From 62701affb9f86ed9fd72f7e1f5e6c5e19351896c Mon Sep 17 00:00:00 2001 From: Doug Hoyte Date: Fri, 15 Sep 2023 00:59:19 -0400 Subject: [PATCH] new path for rust harness --- test/fuzz.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzz.pl b/test/fuzz.pl index 3fd8f41..2213ecc 100755 --- a/test/fuzz.pl +++ b/test/fuzz.pl @@ -19,7 +19,7 @@ sub harnessTypeToCmd { } elsif ($harnessType eq 'js') { return 'node js/harness.js'; } elsif ($harnessType eq 'rust') { - return '../../rust-negentropy/target/debug/examples/harness'; + return '../../rust-negentropy/target/debug/harness'; } die "unknown harness type: $harnessType";