Update of /cvsroot/boost/boost/tools/jam/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15416/tools/jam_994/test
Modified Files:
Tag: Boost_Jam_994
parallel_actions.jam
Log Message:
Fix non-Unix case of exec to that is outputs the action headers as usual.
Index: parallel_actions.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/jam/test/Attic/parallel_actions.jam,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- parallel_actions.jam 2 Jun 2007 01:34:46 -0000 1.1.2.2
+++ parallel_actions.jam 2 Jun 2007 01:39:29 -0000 1.1.2.3
@@ -49,24 +49,24 @@
{
actions sleeper
{
-echo "[$(<:B)] 0"
+echo [$(<:S)] 0
sleep 1
-echo "[$(<:B)] 1"
+echo [$(<:S)] 1
sleep 1
-echo "[$(<:B)] 2"
-sleep $(<:S)
+echo [$(<:S)] 2
+sleep $(<:B)
}
}
else
{
actions sleeper
{
-echo "[$(<:B)] 0"
+echo "[$(<:S)] 0"
sleep 1
-echo "[$(<:B)] 1"
+echo "[$(<:S)] 1"
sleep 1
-echo "[$(<:B)] 2"
-sleep $(<:S)
+echo "[$(<:S)] 2"
+sleep $(<:B)
}
}
@@ -76,16 +76,16 @@
}
NOTFILE front ;
- sleeper a.0 : front ;
- sleeper a.1 : front ;
- sleeper a.2 : front ;
- sleeper a.3 : front ;
+ sleeper 0.a : front ;
+ sleeper 1.a : front ;
+ sleeper 2.a : front ;
+ sleeper 3.a : front ;
NOTFILE choke ;
- DEPENDS choke : a.0 a.1 a.2 a.3 ;
- sleeper b.0 : choke ;
- sleeper b.1 : choke ;
- sleeper b.2 : choke ;
- sleeper b.3 : choke ;
- DEPENDS bottom : b.0 b.1 b.2 b.3 ;
+ DEPENDS choke : 0.a 1.a 2.a 3.a ;
+ sleeper 0.b : choke ;
+ sleeper 1.b : choke ;
+ sleeper 2.b : choke ;
+ sleeper 3.b : choke ;
+ DEPENDS bottom : 0.b 1.b 2.b 3.b ;
DEPENDS all : bottom ;
}
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs