Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ third_party/

# IDE
.vscode

# License files
LICENSE.dec.aes
LICENSE.dec.pkcrypt
LICENSE.enc.aes
LICENSE.enc.pkcrypt

# test/test_compat.cc can leave compat.zip hanging around
compat.zip
9 changes: 9 additions & 0 deletions test/test_compat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,13 @@ TEST(compat, unzip64) {
test_unzip_compat(unzip);
unzClose(unzip);
}

/* Keep this dummy test last in this file.
It's purpose is to delete "compat.zip" after all other tests have run.
*/

TEST(compat, final) {
if (mz_os_file_exists("compat.zip") != MZ_OK)
mz_os_unlink("compat.zip");
}
#endif
Loading