packages/modules/NeuralNetworks/tools/systrace_parser/run_tests.sh

10 lines
195 B
Bash
Raw Permalink Normal View History

2025-08-25 08:38:42 +08:00
#!/bin/bash
set -e
cd $(dirname $(realpath $0))
echo Running python unittests
python3 -m unittest discover parser/test
echo Running large tests
./parser/test/large_test.sh
echo All tests passed