0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-29 16:47:28 +01:00

fixed testSetup so /tmp/unittest actually gets created

This commit is contained in:
Eliot Horowitz 2009-03-26 10:08:16 -04:00
parent 0195f478e5
commit 1942ea0df5

View File

@ -696,7 +696,7 @@ def addSmoketest( name, deps, actions ):
testEnv.SideEffect( "dummySmokeSideEffect", name )
def testSetup( env , target , source ):
Mkdir( "/tmp/unittest/" )
Execute( Mkdir( "/tmp/unittest/" ) )
addSmoketest( "smoke", [ "test" ] , [ testSetup , test[ 0 ].abspath ] )
addSmoketest( "smokePerf", [ "perftest" ] , [ testSetup , perftest[ 0 ].abspath ] )