Message ID | 1516635644-24819-1-git-send-email-mathieu.poirier@linaro.org |
---|---|
State | New |
Headers | show |
Series | perf tools: Adding missing test file for libopencsd | expand |
Em Mon, Jan 22, 2018 at 08:40:44AM -0700, Mathieu Poirier escreveu: > The test for the feature did not make it into the original patchset, > something that gets corrected here. I just merged it to the cset where it should've been: [acme@jouet perf]$ ls -la /tmp/build/perf/feature/test-libopencsd.make.output -rw-rw-r--. 1 acme acme 202 Jan 22 13:05 /tmp/build/perf/feature/test-libopencsd.make.output [acme@jouet perf]$ cat /tmp/build/perf/feature/test-libopencsd.make.output test-libopencsd.c:2:10: fatal error: opencsd/c_api/opencsd_c_api.h: No such file or directory #include <opencsd/c_api/opencsd_c_api.h> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. [acme@jouet perf]$ - Arnaldo
diff --git a/tools/build/feature/test-libopencsd.c b/tools/build/feature/test-libopencsd.c new file mode 100644 index 000000000000..5ff1246e6194 --- /dev/null +++ b/tools/build/feature/test-libopencsd.c @@ -0,0 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0 +#include <opencsd/c_api/opencsd_c_api.h> + +int main(void) +{ + (void)ocsd_get_version(); + return 0; +}
The test for the feature did not make it into the original patchset, something that gets corrected here. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> --- tools/build/feature/test-libopencsd.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tools/build/feature/test-libopencsd.c -- 2.7.4