Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TFleury committed Oct 24, 2019
1 parent 332ff4d commit 79b1239
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Tests-Legacy/L0/ExtractFiles/extractFilesLinux.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"output": true
},
"exec": {
"/usr/bin/unzip mockedBuildSources/foo.zip -d output": {
"/usr/bin/unzip -o mockedBuildSources/foo.zip -d output": {
"code": 0,
"stdout": "extracted mockedBuildSources/foo.zip",
"stderr": ""
Expand All @@ -60,17 +60,17 @@
"stdout": "extracted mockedBuildSources/foo.tar.gz",
"stderr": ""
},
"/usr/bin/unzip mockedBuildSources/subdir/foo.jar -d output": {
"/usr/bin/unzip -o mockedBuildSources/subdir/foo.jar -d output": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/foo.jar",
"stderr": ""
},
"/usr/bin/7z x -ooutput mockedBuildSources/subdir/subdir/foo.7z": {
"/usr/bin/7z x -aoa -ooutput mockedBuildSources/subdir/subdir/foo.7z": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/subdir/foo.7z",
"stderr": ""
},
"/usr/bin/unzip mockedBuildSources/subdir/foo.zip -d output": {
"/usr/bin/unzip -o mockedBuildSources/subdir/foo.zip -d output": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/foo.zip",
"stderr": ""
Expand Down
16 changes: 8 additions & 8 deletions Tests-Legacy/L0/ExtractFiles/extractFilesWin.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,42 +40,42 @@
"output": true
},
"exec": {
"/ExtractFiles/7zip/7z.exe x -ooutput mockedBuildSources/foo.zip": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput mockedBuildSources/foo.zip": {
"code": 0,
"stdout": "extracted mockedBuildSources/foo.zip",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput mockedBuildSources/foo.tar": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput mockedBuildSources/foo.tar": {
"code": 0,
"stdout": "extracted mockedBuildSources/foo.tar",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput/_foo.tar.gz_ mockedBuildSources/foo.tar.gz": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput/_foo.tar.gz_ mockedBuildSources/foo.tar.gz": {
"code": 0,
"stdout": "extracted mockedBuildSources/foo.tar.gz",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput output/_foo.tar.gz_/foo.tar": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput output/_foo.tar.gz_/foo.tar": {
"code": 0,
"stdout": "extracted output/_foo.tar.gz_/foo.tar",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput/ output/_foo.tar.gz_/foo.tar": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput/ output/_foo.tar.gz_/foo.tar": {
"code": 0,
"stdout": "extractedoutput/_foo.tar.gz_/foo.tar",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput mockedBuildSources/subdir/foo.jar": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput mockedBuildSources/subdir/foo.jar": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/foo.jar",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput mockedBuildSources/subdir/subdir/foo.7z": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput mockedBuildSources/subdir/subdir/foo.7z": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/subdir/foo.7z",
"stderr": ""
},
"/ExtractFiles/7zip/7z.exe x -ooutput mockedBuildSources/subdir/foo.zip": {
"/ExtractFiles/7zip/7z.exe x -aoa -ooutput mockedBuildSources/subdir/foo.zip": {
"code": 0,
"stdout": "extracted mockedBuildSources/subdir/foo.zip",
"stderr": ""
Expand Down

0 comments on commit 79b1239

Please sign in to comment.