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
359 B
Python
18 lines
359 B
Python
#!/usr/bin/python3
|
|
|
|
import os,sys,math;
|
|
from compscripts.complib2 import *;
|
|
|
|
|
|
os.system('python3 ./compscripts/mingwcc.makelib.py')
|
|
os.system('python3 ./compscripts/mingwcc.maketest.py')
|
|
|
|
obj_list = flist('./',recurse=True,exts=['.o'])
|
|
for o in obj_list:
|
|
os.system('rm {}'.format(o))
|
|
|
|
os.chdir('./bin_winx64')
|
|
callproc('wine ./tests.exe')
|
|
os.chdir('..')
|
|
|