summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormzuenni <michi.zuendorf@gmail.com>2024-08-02 16:08:23 +0200
committermzuenni <michi.zuendorf@gmail.com>2024-08-02 16:08:23 +0200
commit5bc03851d490c6620dce0aee9d029d6286c20774 (patch)
tree17e2c0c33d8d51efb2523f3801c050def2ff6293
parent25daac91eedb2c2abb0c6142d7ea5f4e7ce2b608 (diff)
fix
-rwxr-xr-xtest/fuzz.sh2
-rw-r--r--test/geometry/linesAndSegments.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/fuzz.sh b/test/fuzz.sh
index 5b9b9d2..c166506 100755
--- a/test/fuzz.sh
+++ b/test/fuzz.sh
@@ -10,5 +10,5 @@ do
done
echo "Fuzz using seed: $seed"
echo
- ./test.sh --seed=123 "$@"
+ ./test.sh --seed=$seed "$@"
done
diff --git a/test/geometry/linesAndSegments.cpp b/test/geometry/linesAndSegments.cpp
index 5bfa675..abbcfc8 100644
--- a/test/geometry/linesAndSegments.cpp
+++ b/test/geometry/linesAndSegments.cpp
@@ -220,7 +220,7 @@ int main() {
stress_lineIntersection(100);
stress_lineIntersection(1'000'000'000);
stress_lineIntersection2(100);
- stress_lineIntersection2(1'000'000);
+ stress_lineIntersection2(10'000);//intersection can bet at N^3
stress_distToLine(100);
stress_distToLine(1'000'000'000);
stress_projectToLine(100);