From bd98998ffa11b4f096ee8a6328744f0ac96f0841 Mon Sep 17 00:00:00 2001 From: huitema Date: Wed, 5 Nov 2025 20:52:21 -0800 Subject: [PATCH] get picoquic location for tests --- .github/workflows/test-suite.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 3fe269f..71879e5 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -34,31 +34,31 @@ jobs: run: | ulimit -c unlimited -S # Iterate through all the scenarios - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_alone.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_alone.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_alone_200.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_alone_200.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_vs_c4.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_vs_c4.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_after_c4.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_after_c4.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_before_c4.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_before_c4.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_vs_cubic.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_vs_cubic.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_wifi_fade.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_wifi_fade.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_wifi_suspension.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_wifi_suspension.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_media.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_media.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_media10.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_media10.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_media_wf.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_media_wf.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_media_ws.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_media_ws.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; - ../picoquic_ns/pico_sim -S ../../picoquic ./sim_specs/c4_short_long.txt && QDRESULT=$? + ../picoquic_ns/pico_sim -S ../picoquic ./sim_specs/c4_short_long.txt && QDRESULT=$? if [ ${QDRESULT} != 0 ]; then exit 1; fi; exit 0