diff --git a/test/test.py b/test/test.py index 721db6a1..d1e9edef 100755 --- a/test/test.py +++ b/test/test.py @@ -77,6 +77,16 @@ def crunch(input_path, output_path, options=[]): crunch("build/test/png-to-all/unvanquished_64.ktx", "build/test/ktx-to-all/unvanquished_64.png") crunch("build/test/png-to-all/unvanquished_64.ktx", "build/test/ktx-to-all/unvanquished_64.jpg") +mkdir("build/test/tga-to-png") +crunch("test/raw-bottom-left.tga", "build/test/tga-to-png/raw-bottom-left.png") +crunch("test/raw-bottom-right.tga", "build/test/tga-to-png/raw-bottom-right.png") +crunch("test/raw-top-left.tga", "build/test/tga-to-png/raw-top-left.png") +crunch("test/raw-top-right.tga", "build/test/tga-to-png/raw-top-right.png") +crunch("test/rle-bottom-left.tga", "build/test/tga-to-png/rle-bottom-left.png") +crunch("test/rle-bottom-right.tga", "build/test/tga-to-png/rle-bottom-right.png") +crunch("test/rle-top-left.tga", "build/test/tga-to-png/rle-top-left.png") +crunch("test/rle-top-right.tga", "build/test/tga-to-png/rle-top-right.png") + mkdir("build/test/tga-to-crn") crunch("test/raw-bottom-left.tga", "build/test/tga-to-crn/raw-bottom-left.crn") crunch("test/raw-bottom-right.tga", "build/test/tga-to-crn/raw-bottom-right.crn")