You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2004/03/13 01:29:31 UTC

cvs commit: apr/test Makefile.win

rbb         2004/03/12 16:29:31

  Modified:    test     Makefile.win
  Log:
  Add testatomic to testall in the Windows build system.
  
  Revision  Changes    Path
  1.13      +2 -5      apr/test/Makefile.win
  
  Index: Makefile.win
  ===================================================================
  RCS file: /home/cvs/apr/test/Makefile.win,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile.win	5 Mar 2004 19:52:06 -0000	1.12
  +++ Makefile.win	13 Mar 2004 00:29:31 -0000	1.13
  @@ -16,7 +16,6 @@
   	testlockperf.exe \
   	testshmproducer.exe \
   	testshmconsumer.exe \
  -	testatomic.exe \
   	testmutexscope.exe \
   	testall.exe \
   	mod_test.so
  @@ -87,9 +86,6 @@
   testglobalmutex.exe: testglobalmutex.obj $(LOCAL_LIBS)
   	$(LINK) testglobalmutex.obj $(LOCAL_LIBS) $(ALL_LIBS)
   
  -testatomic.exe: testatomic.obj $(LOCAL_LIBS)
  -	$(LINK) testatomic.obj $(LOCAL_LIBS) $(ALL_LIBS)
  -
   testmutexscope.exe: testmutexscope.obj $(LOCAL_LIBS)
   	$(LINK) testmutexscope.obj $(LOCAL_LIBS) $(ALL_LIBS)
   
  @@ -99,7 +95,8 @@
   	testdso.obj testoc.obj testdup.obj testsockets.obj testproc.obj \
   	testpoll.obj testlock.obj testsockopt.obj testpipe.obj testthread.obj \
   	testhash.obj testargs.obj testnames.obj testuser.obj testpath.obj \
  -	testenv.obj testprocmutex.obj testrand2.obj testfnmatch.obj
  +	testenv.obj testprocmutex.obj testrand2.obj testfnmatch.obj \
  +        testatomic.obj
   
   testall.exe: $(TESTS) CuTest.obj $(LOCAL_LIBS)
   	$(LINK) /debug /subsystem:console /machine:I386 $(TESTS) CuTest.obj \