Test script

This commit is contained in:
Guus Waals 2025-05-27 00:06:51 +08:00
parent 54476f89f0
commit fd90916a1f
1 changed files with 21 additions and 0 deletions

21
tooling2/files.sh Normal file
View File

@ -0,0 +1,21 @@
#!/bin/bash
set -e
tool=build/clang-x86_64-pc-windows-msvc/Release/r3_gh_tool
scan_dir=tmps/gh_auto
file_list=files.txt
rm -f $file_list
for file in tmps/gh_auto/*.cxx
do
echo $file >> $file_list
done
for file in tmps/gh_stub/*.cxx
do
echo $file >> $file_list
done
for file in tmps/gh_fix/*.h
do
echo $file >> $file_list
done
$tool @$file_list