blob: 29743e07d1ddb38429c4fa151c10b4207cf969b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
. ./_export_env.sh # setting environment variables
export TET_SUITE_ROOT=`pwd`
RESULT_DIR=results
tcc -c -p ./ # executing tcc, with clean option (-c)
rm -r $RESULT_DIR
rm -r tet_tmp_dir
rm testcase/tet_captured
|