소스 검색

test benchmarks

BLUELOVETH 2 년 전
부모
커밋
f25b99cbbd
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      run_tests.sh

+ 2 - 0
run_tests.sh

@@ -1,7 +1,9 @@
 python3 prebuild.py
 SRC=$(find src/ -name "*.cpp")
 clang++ -std=c++17 --coverage -O1 -stdlib=libc++ -Wfatal-errors -o main src2/main.cpp $SRC -Iinclude -ldl
+
 python3 scripts/run_tests.py
+python3 scripts/run_tests.py benchmarks/
 
 # if prev error exit
 if [ $? -ne 0 ]; then