From 88b1846a434188abadb3f5d10becda0bf3929908 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 15 Jan 2024 14:03:24 +0100 Subject: [PATCH] tests: fix paths to the other periodic tests --- programs/tests/t_periodic1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/tests/t_periodic1.c b/programs/tests/t_periodic1.c index 08e4a40..ec86cd8 100644 --- a/programs/tests/t_periodic1.c +++ b/programs/tests/t_periodic1.c @@ -22,12 +22,12 @@ int main(int argc, char *argv[]) sched_setparam(cpid, ¶m); int counter = 0; if (fork() == 0) { - char *_argv[] = { "/bin/periodic2", NULL }; + char *_argv[] = { "/bin/tests/t_periodic2", NULL }; execv(_argv[0], _argv); printf("This is bad, I should not be here! EXEC NOT WORKING\n"); } if (fork() == 0) { - char *_argv[] = { "/bin/periodic3", NULL }; + char *_argv[] = { "/bin/tests/t_periodic3", NULL }; execv(_argv[0], _argv); printf("This is bad, I should not be here! EXEC NOT WORKING\n"); }