File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ if [ -z "$SKIP_TESTS" ]; then
32
32
33
33
runtest --test dist -- --test-threads 1
34
34
35
- find ./ tests -maxdepth 1 -type f ! -path ' */dist.rs' -name ' *.rs' \
36
- | sed -E ' s@\./ tests/(.+) \.rs@\1 @g' \
35
+ find tests -maxdepth 1 -type f ! -path ' */dist.rs' -name ' *.rs' \
36
+ | sed -e ' s@^ tests/@@;s@ \.rs$@ @g' \
37
37
| while read -r test ; do
38
38
runtest --test " ${test} "
39
39
done
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ fn unpack_without_first_dir<'a, R: Read>(
277
277
let entries = archive
278
278
. entries ( )
279
279
. chain_err ( || ErrorKind :: ExtractingPackage ) ?;
280
- const MAX_FILE_SIZE : u64 = 100_000_000 ;
280
+ const MAX_FILE_SIZE : u64 = 200_000_000 ;
281
281
let mut budget = MemoryBudget :: new ( MAX_FILE_SIZE as usize ) ;
282
282
283
283
let mut directories: HashMap < PathBuf , DirStatus > = HashMap :: new ( ) ;
You can’t perform that action at this time.
0 commit comments