-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from Gottox/fix/racy-tests
test: fix race condition in tools tests
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
###################################################################### | ||
# @author : Enno Boland ([email protected]) | ||
# @file : repack.sh | ||
# @file : large-tree.sh | ||
# @created : Friday Mar 17, 2023 15:11:09 CET | ||
# | ||
# @description : This script creates a squashfs image, mounts it, and | ||
|
@@ -14,9 +14,9 @@ | |
: "${SOURCE_ROOT:?SOURCE_ROOT is not set}" | ||
: "${SQSH_LS:?SQSH_UNPACK is not set}" | ||
|
||
MKSQUASHFS_OPTS="-no-xattrs -noappend -all-root -mkfs-time 0" | ||
MKSQUASHFS_OPTS="-no-xattrs -noappend -all-root -mkfs-time 0 -noI -noD -noF -noX" | ||
|
||
WORK_DIR="$BUILD_DIR/unpack-repack" | ||
WORK_DIR="$BUILD_DIR/large-tree" | ||
|
||
mkdir -p "$WORK_DIR" | ||
cd "$WORK_DIR" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters