diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-22 17:46:40 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-22 17:46:40 +0000 |
commit | 53344f9a7b031c4da4c4837424c75a3961847ac7 (patch) | |
tree | 8a845d0f57434af84f225b39cf8bf2bbce57dc26 /bin | |
parent | 1c1e5e57dbf3e7c633c8d31b1bed9ebd79fb9935 (diff) | |
download | ATCD-53344f9a7b031c4da4c4837424c75a3961847ac7.tar.gz |
*** empty log message ***
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/auto_compile_win32.pl | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/bin/auto_compile_win32.pl b/bin/auto_compile_win32.pl index 44d5ac85037..cffa29321c2 100755 --- a/bin/auto_compile_win32.pl +++ b/bin/auto_compile_win32.pl @@ -196,17 +196,17 @@ EOD "SPIPE_Test.dsp", "SString_Test.dsp", "SV_Shared_Memory_Test.dsp", - "ask_Test.dsp", - "hread_Manager_Test.dsp", - "hread_Mutex_Test.dsp", - "hread_Pool_Reactor_Test.dsp", - "hread_Pool_Test.dsp", - "imeprobe_Test.dsp", - "imer_Queue_Test.dsp", - "ime_Service_Test.dsp", - "ime_Value_Test.dsp", - "okens_Test.dsp", - "SS_Test.dsp", + "Task_Test.dsp", + "Thread_Manager_Test.dsp", + "Thread_Mutex_Test.dsp", + "Thread_Pool_Reactor_Test.dsp", + "Thread_Pool_Test.dsp", + "Timeprobe_Test.dsp", + "Timer_Queue_Test.dsp", + "Time_Service_Test.dsp", + "Time_Value_Test.dsp", + "Tokens_Test.dsp", + "TSS_Test.dsp", "Upgradable_RW_Test.dsp", "UPIPE_SAP_Test.dsp" ); @@ -252,9 +252,9 @@ sub Build_Config sub Build_Version_Test { - my $Config = shift + my $Config = shift; my $Cntr = 0; - my $Command_Line = "" + my $Command_Line = ""; chdir ("$ENV{ACE_ROOT}/tests/version_tests"); for ($Cntr = 0; $Cntr < scalar (@Version_Tests_List); $Cntr++) @@ -287,9 +287,8 @@ sub Build_Collection $Config = $Lists[$Cntr]; print "Building $Config of $Target{$Config}\n" if ( $Debug ); Build_Config ($Config, $Target{$Config}); + Build_Version_Test ($Config); } - - Build_Version_Test ($Config); } @@ -326,12 +325,12 @@ while ( $#ARGV >= 0 && $ARGV[0] =~ /^-/ ) } elsif ( $ARGV[0] eq '-D' ) # Build DLL only { - print "Build DLL only" if ( $Verbose ); + print "Build DLL only\n" if ( $Verbose ); $Build_LIB = 0; } elsif ( $ARGV[0] eq '-L' ) # Build LIB only { - print "Build LIB only" if ( $Verbose ); + print "Build LIB only\n" if ( $Verbose ); $Build_DLL = 0; } elsif ( $ARGV[0] eq '-v' ) # Verbose mode |