[llvm-commits] [hlvm] r38130 - /hlvm/trunk/build/check.py
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:00:08 PDT 2007
Author: reid
Date: Sat Jul 7 19:00:08 2007
New Revision: 38130
URL: http://llvm.org/viewvc/llvm-project?rev=38130&view=rev
Log:
Update the check targets for new variable names.
Modified:
hlvm/trunk/build/check.py
Modified: hlvm/trunk/build/check.py
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/build/check.py?rev=38130&r1=38129&r2=38130&view=diff
==============================================================================
--- hlvm/trunk/build/check.py (original)
+++ hlvm/trunk/build/check.py Sat Jul 7 19:00:08 2007
@@ -28,7 +28,7 @@
outf.write('set tmpdir "$objdir/tmp"\n')
outf.write('set srcrootdir "' + env['AbsSrcRoot'] + '"\n')
outf.write('set objrootdir "' + env['AbsObjRoot'] + '"\n')
- outf.write('set llcpath "' + env['LLC'] + '"\n')
+ outf.write('set llcpath "' + env['with_llc'] + '"\n')
outf.write('## All vars above are generated by scons. Do Not Edit!\n')
outf.close()
return 0
@@ -37,7 +37,7 @@
return "Building DejaGnu site.exp file"
def CheckAction(target,source,env):
- if env['RUNTEST'] == None:
+ if env['with_runtest'] == None:
print "Testing was disabled because DejaGnu 'runtest' was not found"
return 0
@@ -46,7 +46,7 @@
print "context=",context
os.system('cd ' + pjoin(env['BuildDir'],'test') +
'; DEJAGNU="'+pjoin(env['AbsObjRoot'],'test','site.exp')+'" '+
- env['RUNTEST'] + ' --tool ' + context)
+ env['with_runtest'] + ' --tool ' + context)
return 0
def CheckMessage(target,source,env):
More information about the llvm-commits
mailing list