[llvm-commits] [hlvm] r38375 - /hlvm/trunk/test/SConscript
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:02:48 PDT 2007
Author: reid
Date: Sat Jul 7 19:02:47 2007
New Revision: 38375
URL: http://llvm.org/viewvc/llvm-project?rev=38375&view=rev
Log:
Fix a typo.
Modified:
hlvm/trunk/test/SConscript
Modified: hlvm/trunk/test/SConscript
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/test/SConscript?rev=38375&r1=38374&r2=38375&view=diff
==============================================================================
--- hlvm/trunk/test/SConscript (original)
+++ hlvm/trunk/test/SConscript Sat Jul 7 19:02:47 2007
@@ -24,8 +24,10 @@
Import('env')
if 'check' in COMMAND_LINE_TARGETS:
from build import check
- if env['suites'] == 'all':
- check.Check(env,['xml2xml','invalid','return0','generate'])
+ if env['suites'] == 'normal':
+ check.Check(env,['xml2xml','invalid','return0'])
+ elif env['suites'] == 'all':
+ check.Check(env,['xml2xml','invalid','return0','generate'])
else:
suites = env['suites'].split(' ')
print "Suites To Run=",suites
More information about the llvm-commits
mailing list