diff --git a/ci/run.bash b/ci/run.bash index 1496eb75dc..8317890d8d 100644 --- a/ci/run.bash +++ b/ci/run.bash @@ -32,8 +32,8 @@ if [ -z "$SKIP_TESTS" ]; then runtest --test dist -- --test-threads 1 - find ./tests -maxdepth 1 -type f ! -path '*/dist.rs' -name '*.rs' \ - | sed -E 's@\./tests/(.+)\.rs@\1@g' \ + find tests -maxdepth 1 -type f ! -path '*/dist.rs' -name '*.rs' \ + | sed -e 's@^tests/@@;s@\.rs$@@g' \ | while read -r test; do runtest --test "${test}" done diff --git a/src/dist/component/package.rs b/src/dist/component/package.rs index 1663ad1e9f..4b432785ab 100644 --- a/src/dist/component/package.rs +++ b/src/dist/component/package.rs @@ -277,7 +277,7 @@ fn unpack_without_first_dir<'a, R: Read>( let entries = archive .entries() .chain_err(|| ErrorKind::ExtractingPackage)?; - const MAX_FILE_SIZE: u64 = 100_000_000; + const MAX_FILE_SIZE: u64 = 200_000_000; let mut budget = MemoryBudget::new(MAX_FILE_SIZE as usize); let mut directories: HashMap = HashMap::new();