From 3480c561676d2f0fd59c86603f7689fbfe94d6d2 Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Tue, 27 Aug 2024 15:41:08 +0200 Subject: [PATCH] tmp Signed-off-by: Andrea Terzolo --- .github/workflows/ci.yml | 7 ++++++- test/e2e/tests/test_event_generator/test_file_writes.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f4a5183fa..26638edd42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -321,13 +321,18 @@ jobs: sudo -E make e2e-install-deps sudo -E ../test/e2e/scripts/run_tests.sh + - name: check test treport + if: failure() + run: | + ls /tmp/report/report.html + - name: Archive test reports uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 if: failure() with: name: ${{ matrix.name }}_report path: | - ${{ github.workspace }}/build/report/ + /tmp/report/ build-libs-emscripten: name: build-libs-emscripten 🧐 diff --git a/test/e2e/tests/test_event_generator/test_file_writes.py b/test/e2e/tests/test_event_generator/test_file_writes.py index 607f887342..7f21a39974 100644 --- a/test/e2e/tests/test_event_generator/test_file_writes.py +++ b/test/e2e/tests/test_event_generator/test_file_writes.py @@ -5,7 +5,7 @@ def create_expected_arg(directory: str) -> str: - return fr'^fd=3\({re.escape(directory)}\/created-by-event-generator\) dirfd=-100\(AT_FDCWD\) name={re.escape(directory)}\/created-by-event-generator flags=20742\(O_TRUNC\|O_CREAT\|O_WRONLY\|O_CLOEXEC\|O_F_CREATED\) mode=0755 dev=.* ino=\d+$' + return fr'^fd=3\({re.escape(directory)}\/created-by-event-generator\) dirfd=-100\(AT_FDCWD\) name={re.escape(directory)}\/created-by-event-generator flags=20742\(O_TRUNC\|O_CREAT\|O_WRONLY\|O_CLOEXEC\) mode=0755 dev=.* ino=\d+$' def generate_ids(parameters: list) -> list: