Skip to content
Snippets Groups Projects
Commit 2ce45a2f authored by steve-e's avatar steve-e
Browse files

Also run 'make check' in the build-test.

parent a628fa16
No related branches found
No related tags found
No related merge requests found
......@@ -6,10 +6,12 @@ import sys
if os.getcwd().endswith('dev'):
os.chdir('../../') # we were in scripts/dev
ret1 = os.system("make clean > " + os.devnull + " 2>&1")
ret2 = os.system("make > " + os.devnull + " 2>&1")
ret = 0
ret += os.system("make clean > " + os.devnull)
ret += os.system("make > " + os.devnull)
ret += os.system("make check > " + os.devnull)
if ret1 + ret2 == 0:
if ret == 0:
print "Build successfull"
sys.exit(0)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment