You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
351 B
Python
18 lines
351 B
Python
#!/usr/bin/python3
|
|
|
|
import os,sys,math;
|
|
from compscripts.complib2 import *;
|
|
|
|
|
|
os.system('python3 ./compscripts/linux64.makelib.py')
|
|
os.system('python3 ./compscripts/linux64.maketest.py')
|
|
|
|
obj_list = flist('./',recurse=True,exts=['.o'])
|
|
for o in obj_list:
|
|
os.system('rm {}'.format(o))
|
|
|
|
os.chdir('./bin_linux64')
|
|
callproc('./tests')
|
|
os.chdir('..')
|
|
|