X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-syscall-events%2Fgen-syscall-events.c;fp=tests%2Futils%2Ftestapp%2Fgen-syscall-events%2Fgen-syscall-events.c;h=9ab65093307513666b76fe5100919d163b35ded8;hp=1ec29139e4f5d760c56d5ba27cdab4ab374a8ae1;hb=ca342eaff631d106a2c83308f19487d21cb5be40;hpb=d23253aed60c9aaea2adcc689a7fbefc22b43e7b diff --git a/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c b/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c index 1ec29139e..9ab650933 100644 --- a/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c +++ b/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c @@ -88,16 +88,19 @@ error: int main(int argc, char **argv) { int ret; - char *start_file; + const char *start_file, *path1, *path2; - if (argc != 2) { + if (argc != 4) { fprintf(stderr, "Error: Missing argument\n"); + fprintf(stderr, "USAGE: %s PATH_WAIT_FILE PATH1_TO_OPEN PATH2_TO_OPEN\n", argv[0]); fprintf(stderr, "USAGE: %s PATH_WAIT_FILE\n", argv[0]); ret = -1; goto error; } start_file = argv[1]; + path1 = argv[2]; + path2 = argv[3]; /* * Wait for the start_file to be created by an external process @@ -112,13 +115,13 @@ int main(int argc, char **argv) * Start generating syscalls. We use syscall(2) to prevent libc to change * the underlying syscall. e.g. calling openat(2) instead of open(2). */ - ret = open_read_close("/proc/cpuinfo"); + ret = open_read_close(path1); if (ret == -1) { ret = -1; goto error; } - ret = open_read_close("/proc/cmdline"); + ret = open_read_close(path2); if (ret == -1) { ret = -1; goto error;