summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-11-24 17:53:52 +0000
committerArun Isaac2025-11-24 17:53:52 +0000
commit0badc59665be328fbd370bbd9e2d1cf073da9d68 (patch)
treed26268da862692d79b24f8f0fd92f33aaf89f93c
parentce71920763e09a8078cb70c54365b8add37882ad (diff)
downloadravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.tar.gz
ravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.tar.lz
ravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.zip
e2e-tests: Pass --no-same-owner flag to tar.
This is required to run tar successfully within the CI end-to-end
tests container.
-rw-r--r--e2e-tests/tools/capture-output-file-with-parameter-reference.scm2
-rw-r--r--e2e-tests/tools/capture-output-file.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/e2e-tests/tools/capture-output-file-with-parameter-reference.scm b/e2e-tests/tools/capture-output-file-with-parameter-reference.scm
index 6bc4b7d..1f0d619 100644
--- a/e2e-tests/tools/capture-output-file-with-parameter-reference.scm
+++ b/e2e-tests/tools/capture-output-file-with-parameter-reference.scm
@@ -1,6 +1,6 @@
 (define extract-specific-file
   (command #:inputs (archive #:type File) (extractfile #:type string)
-           #:run "tar" "--extract" "--file" archive extractfile
+           #:run "tar" "--no-same-owner" "--extract" "--file" archive extractfile
            #:outputs (extracted_file
                       #:type File
                       #:binding ((glob . "$(inputs.extractfile)")))))
diff --git a/e2e-tests/tools/capture-output-file.scm b/e2e-tests/tools/capture-output-file.scm
index 80b4654..aa1dca0 100644
--- a/e2e-tests/tools/capture-output-file.scm
+++ b/e2e-tests/tools/capture-output-file.scm
@@ -1,6 +1,6 @@
 (define extract
   (command #:inputs (archive #:type File)
-           #:run "tar" "--extract" "--file" archive
+           #:run "tar" "--no-same-owner" "--extract" "--file" archive
            #:outputs (extracted_file
                       #:type File
                       #:binding ((glob . "hello.txt")))))