We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ce69d commit bea1459Copy full SHA for bea1459
.github/workflows/ci-test.yml
@@ -64,6 +64,12 @@ jobs:
64
name: test-log-raw-tr-wi_ext-single_header-${{ github.sha }}
65
path: build/bin/raw_tr_wi_ext_single_header.csv
66
67
+ - name: upload-artifact
68
+ uses: actions/upload-artifact@v2
69
+ with:
70
+ name: test-log-raw-edp-${{ github.sha }}
71
+ path: build/bin/raw_edp.txt
72
+
73
- name: upload-artifact
74
uses: actions/upload-artifact@v2
75
with:
tests/test.sh
@@ -334,4 +334,12 @@ if [ "$?" -ne "0" ]; then
334
exit 1
335
fi
336
337
+echo Testing pcm-raw with -edp
338
+./pcm-raw -edp -out raw_edp.txt 0.25 -tr -i=4 -el event_file_test.txt
339
+if [ "$?" -ne "0" ]; then
340
+ echo "Error in pcm-raw"
341
+ exit 1
342
+fi
343
344
345
popd
0 commit comments