Skip to content

Commit

Permalink
is it working?
Browse files Browse the repository at this point in the history
  • Loading branch information
newling committed Aug 29, 2024
1 parent 0a8b7dc commit 4f989eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ jobs:
$PWD/llvm-aie \
--xrt-dir /opt/xilinx/xrt \
--test-set='Smoke' \
--do-not-run-aie
--do-not-run-aie > test_aie_vs_cpu/smoke_output.log 2>&1
# Assert that output.log is empty (because verbose=0)
if [ -s output.log ]; then
echo "output.log is not empty:"
cat output.log
if [ -s test_aie_vs_cpu/smoke_output.log ]; then
echo "smoke_output.log is not empty:"
cat test_aie_vs_cpu/smoke_output.log
exit 1
else
echo "output.log is empty"
echo "smoke_output.log is empty"
fi
- name : E2E comparison of AIE to llvm-cpu
Expand Down

0 comments on commit 4f989eb

Please sign in to comment.