xenia-canary/private/runtest.sh

21 lines
484 B
Bash
Raw Normal View History

python xenia-build.py build
2013-01-27 05:51:31 +00:00
if [ "$?" -ne 0 ]; then
echo "Build failed!"
exit $?
fi
./build/xenia/release/xenia-run \
private/$1 \
2013-02-03 11:34:43 +00:00
--dump_path=build/ \
--dump_module_map=true \
--dump_module_bitcode=true \
2013-01-24 08:10:24 +00:00
--optimize_ir_modules=true \
--optimize_ir_functions=true \
--memory_address_verification=true \
2013-01-24 08:10:24 +00:00
--trace_kernel_calls=true \
--trace_user_calls=true \
2013-01-30 04:27:24 +00:00
--trace_instructions=false \
2013-02-03 08:34:45 +00:00
--abort_before_entry=true \
1>build/run.txt