File tree 3 files changed +16
-3
lines changed 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 31
31
* .out
32
32
* .app
33
33
34
- cmake-build-debug
34
+ cmake-build-debug
35
+ output
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- cd cmake-build-debug/test/
3
- ./tests
2
+
3
+ # This was:
4
+ # cd cmake-build-debug/test/
5
+ # ./tests
6
+
7
+ # Now like this, to match the github action:
8
+ mkdir output
9
+ cmake-build-debug/test/tests --output_format=XML --report_level=detailed 2> output/test-results.xml
10
+ xmllint --format output/test-results.xml > output/test-results-formatted.xml
11
+ xsltproc test/boost-to-junit-xml.xslt output/test-results.xml > output/junit-test-results.xml
Original file line number Diff line number Diff line change 3
3
#define LOOP_BLOCKS 42 // number of blocks to generate when looping
4
4
#define WAV_HEADER_SIZE 44 // sleazy hack...
5
5
6
+ /*
6
7
#define REFERENCE_PATH "../../test/resources/reference/"
7
8
#define INPUT_PATH "../../test/resources/input"
9
+ */
10
+ #define REFERENCE_PATH "test/resources/reference/"
11
+ #define INPUT_PATH "test/resources/input"
8
12
9
13
extern void printTest (uint32_t expectedDataSize = 0 ,
10
14
double rate = NO_RATE );
You can’t perform that action at this time.
0 commit comments