Skip to content

Commit

Permalink
TESTS: Add unit tests for our HERF file archive
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Dec 23, 2016
1 parent 4062f05 commit c314e4e
Show file tree
Hide file tree
Showing 2 changed files with 317 additions and 0 deletions.
312 changes: 312 additions & 0 deletions tests/aurora/herffile.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,312 @@
/* xoreos - A reimplementation of BioWare's Aurora engine
*
* xoreos is the legal property of its developers, whose names
* can be found in the AUTHORS file distributed with this source
* distribution.
*
* xoreos is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* xoreos is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with xoreos. If not, see <http://www.gnu.org/licenses/>.
*/

/** @file
* Unit tests for our HERF file archive class.
*/

#include "gtest/gtest.h"

#include "src/common/error.h"
#include "src/common/hash.h"
#include "src/common/memreadstream.h"

#include "src/aurora/herffile.h"

// Percy Bysshe Shelley's "Ozymandias"
static const byte kFileData[] =
"I met a traveller from an antique land\n"
"Who said: Two vast and trunkless legs of stone\n"
"Stand in the desert. Near them, on the sand,\n"
"Half sunk, a shattered visage lies, whose frown,\n"
"And wrinkled lip, and sneer of cold command,\n"
"Tell that its sculptor well those passions read\n"
"Which yet survive, stamped on these lifeless things,\n"
"The hand that mocked them and the heart that fed:\n"
"And on the pedestal these words appear:\n"
"\'My name is Ozymandias, king of kings:\n"
"Look on my works, ye Mighty, and despair!\'\n"
"Nothing beside remains. Round the decay\n"
"Of that colossal wreck, boundless and bare\n"
"The lone and level sands stretch far away.";

// --- HERF, without dictionary ---

// Percy Bysshe Shelley's "Ozymandias", within a HERF file, without a dictionary
static const byte kHERFFileWithoutDict[] = {
0xC0,0xA5,0xF1,0x00,0x01,0x00,0x00,0x00,0x52,0x0A,0x5E,0xD8,0x6F,0x02,0x00,0x00,
0x14,0x00,0x00,0x00,0x49,0x20,0x6D,0x65,0x74,0x20,0x61,0x20,0x74,0x72,0x61,0x76,
0x65,0x6C,0x6C,0x65,0x72,0x20,0x66,0x72,0x6F,0x6D,0x20,0x61,0x6E,0x20,0x61,0x6E,
0x74,0x69,0x71,0x75,0x65,0x20,0x6C,0x61,0x6E,0x64,0x0A,0x57,0x68,0x6F,0x20,0x73,
0x61,0x69,0x64,0x3A,0x20,0x54,0x77,0x6F,0x20,0x76,0x61,0x73,0x74,0x20,0x61,0x6E,
0x64,0x20,0x74,0x72,0x75,0x6E,0x6B,0x6C,0x65,0x73,0x73,0x20,0x6C,0x65,0x67,0x73,
0x20,0x6F,0x66,0x20,0x73,0x74,0x6F,0x6E,0x65,0x0A,0x53,0x74,0x61,0x6E,0x64,0x20,
0x69,0x6E,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x73,0x65,0x72,0x74,0x2E,0x20,0x4E,
0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x6D,0x2C,0x20,0x6F,0x6E,0x20,0x74,0x68,0x65,
0x20,0x73,0x61,0x6E,0x64,0x2C,0x0A,0x48,0x61,0x6C,0x66,0x20,0x73,0x75,0x6E,0x6B,
0x2C,0x20,0x61,0x20,0x73,0x68,0x61,0x74,0x74,0x65,0x72,0x65,0x64,0x20,0x76,0x69,
0x73,0x61,0x67,0x65,0x20,0x6C,0x69,0x65,0x73,0x2C,0x20,0x77,0x68,0x6F,0x73,0x65,
0x20,0x66,0x72,0x6F,0x77,0x6E,0x2C,0x0A,0x41,0x6E,0x64,0x20,0x77,0x72,0x69,0x6E,
0x6B,0x6C,0x65,0x64,0x20,0x6C,0x69,0x70,0x2C,0x20,0x61,0x6E,0x64,0x20,0x73,0x6E,
0x65,0x65,0x72,0x20,0x6F,0x66,0x20,0x63,0x6F,0x6C,0x64,0x20,0x63,0x6F,0x6D,0x6D,
0x61,0x6E,0x64,0x2C,0x0A,0x54,0x65,0x6C,0x6C,0x20,0x74,0x68,0x61,0x74,0x20,0x69,
0x74,0x73,0x20,0x73,0x63,0x75,0x6C,0x70,0x74,0x6F,0x72,0x20,0x77,0x65,0x6C,0x6C,
0x20,0x74,0x68,0x6F,0x73,0x65,0x20,0x70,0x61,0x73,0x73,0x69,0x6F,0x6E,0x73,0x20,
0x72,0x65,0x61,0x64,0x0A,0x57,0x68,0x69,0x63,0x68,0x20,0x79,0x65,0x74,0x20,0x73,
0x75,0x72,0x76,0x69,0x76,0x65,0x2C,0x20,0x73,0x74,0x61,0x6D,0x70,0x65,0x64,0x20,
0x6F,0x6E,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x6C,0x69,0x66,0x65,0x6C,0x65,0x73,
0x73,0x20,0x74,0x68,0x69,0x6E,0x67,0x73,0x2C,0x0A,0x54,0x68,0x65,0x20,0x68,0x61,
0x6E,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x6D,0x6F,0x63,0x6B,0x65,0x64,0x20,0x74,
0x68,0x65,0x6D,0x20,0x61,0x6E,0x64,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x72,
0x74,0x20,0x74,0x68,0x61,0x74,0x20,0x66,0x65,0x64,0x3A,0x0A,0x41,0x6E,0x64,0x20,
0x6F,0x6E,0x20,0x74,0x68,0x65,0x20,0x70,0x65,0x64,0x65,0x73,0x74,0x61,0x6C,0x20,
0x74,0x68,0x65,0x73,0x65,0x20,0x77,0x6F,0x72,0x64,0x73,0x20,0x61,0x70,0x70,0x65,
0x61,0x72,0x3A,0x0A,0x27,0x4D,0x79,0x20,0x6E,0x61,0x6D,0x65,0x20,0x69,0x73,0x20,
0x4F,0x7A,0x79,0x6D,0x61,0x6E,0x64,0x69,0x61,0x73,0x2C,0x20,0x6B,0x69,0x6E,0x67,
0x20,0x6F,0x66,0x20,0x6B,0x69,0x6E,0x67,0x73,0x3A,0x0A,0x4C,0x6F,0x6F,0x6B,0x20,
0x6F,0x6E,0x20,0x6D,0x79,0x20,0x77,0x6F,0x72,0x6B,0x73,0x2C,0x20,0x79,0x65,0x20,
0x4D,0x69,0x67,0x68,0x74,0x79,0x2C,0x20,0x61,0x6E,0x64,0x20,0x64,0x65,0x73,0x70,
0x61,0x69,0x72,0x21,0x27,0x0A,0x4E,0x6F,0x74,0x68,0x69,0x6E,0x67,0x20,0x62,0x65,
0x73,0x69,0x64,0x65,0x20,0x72,0x65,0x6D,0x61,0x69,0x6E,0x73,0x2E,0x20,0x52,0x6F,
0x75,0x6E,0x64,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x63,0x61,0x79,0x0A,0x4F,0x66,
0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x6F,0x6C,0x6F,0x73,0x73,0x61,0x6C,0x20,0x77,
0x72,0x65,0x63,0x6B,0x2C,0x20,0x62,0x6F,0x75,0x6E,0x64,0x6C,0x65,0x73,0x73,0x20,
0x61,0x6E,0x64,0x20,0x62,0x61,0x72,0x65,0x0A,0x54,0x68,0x65,0x20,0x6C,0x6F,0x6E,
0x65,0x20,0x61,0x6E,0x64,0x20,0x6C,0x65,0x76,0x65,0x6C,0x20,0x73,0x61,0x6E,0x64,
0x73,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x66,0x61,0x72,0x20,0x61,0x77,
0x61,0x79,0x2E
};

GTEST_TEST(HERFFileWithoutDict, getNameHashAlgo) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.getNameHashAlgo(), Common::kHashDJB2);
}

GTEST_TEST(HERFFileWithoutDict, getResources) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

const Aurora::HERFFile::ResourceList &resources = herf.getResources();
ASSERT_EQ(resources.size(), 1);

const Aurora::HERFFile::Resource &resource = *resources.begin();

EXPECT_EQ(resource.hash, Common::hashStringDJB2("ozymandias.txt"));
EXPECT_EQ(resource.index, 0);
}

GTEST_TEST(HERFFileWithoutDict, getResourceSize) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.getResourceSize(0), sizeof(kFileData) - 1);

EXPECT_THROW(herf.getResourceSize(1), Common::Exception);
}

GTEST_TEST(HERFFileWithoutDict, findResourceHash) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.findResource(Common::hashStringDJB2("ozymandias.txt")), 0);
EXPECT_EQ(herf.findResource(0), 0xFFFFFFFF);
}

GTEST_TEST(HERFFileWithoutDict, findResourceName) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.findResource("ozymandias", Aurora::kFileTypeTXT), 0xFFFFFFFF);
EXPECT_EQ(herf.findResource("ozymandias", Aurora::kFileTypeBMP), 0xFFFFFFFF);
EXPECT_EQ(herf.findResource("nope" , Aurora::kFileTypeTXT), 0xFFFFFFFF);
EXPECT_EQ(herf.findResource("nope" , Aurora::kFileTypeBMP), 0xFFFFFFFF);
}

GTEST_TEST(HERFFileWithoutDict, getResource) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithoutDict, sizeof(kHERFFileWithoutDict));

const Aurora::HERFFile herf(stream);

Common::SeekableReadStream *file = herf.getResource(0);
ASSERT_NE(file, static_cast<Common::SeekableReadStream *>(0));

ASSERT_EQ(file->size(), sizeof(kFileData) - 1);

for (size_t i = 0; i < sizeof(kFileData) - 1; i++)
EXPECT_EQ(file->readByte(), kFileData[i]) << "At index " << i;

delete file;
}

// --- HERF, with dictionary ---

// Percy Bysshe Shelley's "Ozymandias", within a HERF file, with a dictionary
static const byte kHERFFileWithDict[] = {
0xC0,0xA5,0xF1,0x00,0x02,0x00,0x00,0x00,0x52,0x0A,0x5E,0xD8,0x6F,0x02,0x00,0x00,
0x20,0x00,0x00,0x00,0xD4,0x8D,0x82,0xEA,0x8C,0x00,0x00,0x00,0x8F,0x02,0x00,0x00,
0x49,0x20,0x6D,0x65,0x74,0x20,0x61,0x20,0x74,0x72,0x61,0x76,0x65,0x6C,0x6C,0x65,
0x72,0x20,0x66,0x72,0x6F,0x6D,0x20,0x61,0x6E,0x20,0x61,0x6E,0x74,0x69,0x71,0x75,
0x65,0x20,0x6C,0x61,0x6E,0x64,0x0A,0x57,0x68,0x6F,0x20,0x73,0x61,0x69,0x64,0x3A,
0x20,0x54,0x77,0x6F,0x20,0x76,0x61,0x73,0x74,0x20,0x61,0x6E,0x64,0x20,0x74,0x72,
0x75,0x6E,0x6B,0x6C,0x65,0x73,0x73,0x20,0x6C,0x65,0x67,0x73,0x20,0x6F,0x66,0x20,
0x73,0x74,0x6F,0x6E,0x65,0x0A,0x53,0x74,0x61,0x6E,0x64,0x20,0x69,0x6E,0x20,0x74,
0x68,0x65,0x20,0x64,0x65,0x73,0x65,0x72,0x74,0x2E,0x20,0x4E,0x65,0x61,0x72,0x20,
0x74,0x68,0x65,0x6D,0x2C,0x20,0x6F,0x6E,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6E,
0x64,0x2C,0x0A,0x48,0x61,0x6C,0x66,0x20,0x73,0x75,0x6E,0x6B,0x2C,0x20,0x61,0x20,
0x73,0x68,0x61,0x74,0x74,0x65,0x72,0x65,0x64,0x20,0x76,0x69,0x73,0x61,0x67,0x65,
0x20,0x6C,0x69,0x65,0x73,0x2C,0x20,0x77,0x68,0x6F,0x73,0x65,0x20,0x66,0x72,0x6F,
0x77,0x6E,0x2C,0x0A,0x41,0x6E,0x64,0x20,0x77,0x72,0x69,0x6E,0x6B,0x6C,0x65,0x64,
0x20,0x6C,0x69,0x70,0x2C,0x20,0x61,0x6E,0x64,0x20,0x73,0x6E,0x65,0x65,0x72,0x20,
0x6F,0x66,0x20,0x63,0x6F,0x6C,0x64,0x20,0x63,0x6F,0x6D,0x6D,0x61,0x6E,0x64,0x2C,
0x0A,0x54,0x65,0x6C,0x6C,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x73,0x20,0x73,
0x63,0x75,0x6C,0x70,0x74,0x6F,0x72,0x20,0x77,0x65,0x6C,0x6C,0x20,0x74,0x68,0x6F,
0x73,0x65,0x20,0x70,0x61,0x73,0x73,0x69,0x6F,0x6E,0x73,0x20,0x72,0x65,0x61,0x64,
0x0A,0x57,0x68,0x69,0x63,0x68,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x72,0x76,0x69,
0x76,0x65,0x2C,0x20,0x73,0x74,0x61,0x6D,0x70,0x65,0x64,0x20,0x6F,0x6E,0x20,0x74,
0x68,0x65,0x73,0x65,0x20,0x6C,0x69,0x66,0x65,0x6C,0x65,0x73,0x73,0x20,0x74,0x68,
0x69,0x6E,0x67,0x73,0x2C,0x0A,0x54,0x68,0x65,0x20,0x68,0x61,0x6E,0x64,0x20,0x74,
0x68,0x61,0x74,0x20,0x6D,0x6F,0x63,0x6B,0x65,0x64,0x20,0x74,0x68,0x65,0x6D,0x20,
0x61,0x6E,0x64,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x72,0x74,0x20,0x74,0x68,
0x61,0x74,0x20,0x66,0x65,0x64,0x3A,0x0A,0x41,0x6E,0x64,0x20,0x6F,0x6E,0x20,0x74,
0x68,0x65,0x20,0x70,0x65,0x64,0x65,0x73,0x74,0x61,0x6C,0x20,0x74,0x68,0x65,0x73,
0x65,0x20,0x77,0x6F,0x72,0x64,0x73,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x3A,0x0A,
0x27,0x4D,0x79,0x20,0x6E,0x61,0x6D,0x65,0x20,0x69,0x73,0x20,0x4F,0x7A,0x79,0x6D,
0x61,0x6E,0x64,0x69,0x61,0x73,0x2C,0x20,0x6B,0x69,0x6E,0x67,0x20,0x6F,0x66,0x20,
0x6B,0x69,0x6E,0x67,0x73,0x3A,0x0A,0x4C,0x6F,0x6F,0x6B,0x20,0x6F,0x6E,0x20,0x6D,
0x79,0x20,0x77,0x6F,0x72,0x6B,0x73,0x2C,0x20,0x79,0x65,0x20,0x4D,0x69,0x67,0x68,
0x74,0x79,0x2C,0x20,0x61,0x6E,0x64,0x20,0x64,0x65,0x73,0x70,0x61,0x69,0x72,0x21,
0x27,0x0A,0x4E,0x6F,0x74,0x68,0x69,0x6E,0x67,0x20,0x62,0x65,0x73,0x69,0x64,0x65,
0x20,0x72,0x65,0x6D,0x61,0x69,0x6E,0x73,0x2E,0x20,0x52,0x6F,0x75,0x6E,0x64,0x20,
0x74,0x68,0x65,0x20,0x64,0x65,0x63,0x61,0x79,0x0A,0x4F,0x66,0x20,0x74,0x68,0x61,
0x74,0x20,0x63,0x6F,0x6C,0x6F,0x73,0x73,0x61,0x6C,0x20,0x77,0x72,0x65,0x63,0x6B,
0x2C,0x20,0x62,0x6F,0x75,0x6E,0x64,0x6C,0x65,0x73,0x73,0x20,0x61,0x6E,0x64,0x20,
0x62,0x61,0x72,0x65,0x0A,0x54,0x68,0x65,0x20,0x6C,0x6F,0x6E,0x65,0x20,0x61,0x6E,
0x64,0x20,0x6C,0x65,0x76,0x65,0x6C,0x20,0x73,0x61,0x6E,0x64,0x73,0x20,0x73,0x74,
0x72,0x65,0x74,0x63,0x68,0x20,0x66,0x61,0x72,0x20,0x61,0x77,0x61,0x79,0x2E,0xC0,
0xA5,0xF1,0x00,0x01,0x00,0x00,0x00,0x52,0x0A,0x5E,0xD8,0x6F,0x7A,0x79,0x6D,0x61,
0x6E,0x64,0x69,0x61,0x73,0x2E,0x74,0x78,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};

GTEST_TEST(HERFFileWithDict, getNameHashAlgo) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.getNameHashAlgo(), Common::kHashDJB2);
}

GTEST_TEST(HERFFileWithDict, getResources) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

const Aurora::HERFFile::ResourceList &resources = herf.getResources();
ASSERT_EQ(resources.size(), 2);

Aurora::HERFFile::ResourceList::const_iterator resourceIterator = resources.begin();

const Aurora::HERFFile::Resource &resource1 = *resourceIterator++;

EXPECT_STREQ(resource1.name.c_str(), "ozymandias");
EXPECT_EQ(resource1.type, Aurora::kFileTypeTXT);
EXPECT_EQ(resource1.hash, Common::hashStringDJB2("ozymandias.txt"));
EXPECT_EQ(resource1.index, 0);

const Aurora::HERFFile::Resource &resource2 = *resourceIterator++;

EXPECT_STREQ(resource2.name.c_str(), "erf");
EXPECT_EQ(resource2.type, Aurora::kFileTypeDICT);
EXPECT_EQ(resource2.hash, Common::hashStringDJB2("erf.dict"));
EXPECT_EQ(resource2.index, 1);
}

GTEST_TEST(HERFFileWithDict, getResourceSize) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.getResourceSize(0), sizeof(kFileData) - 1);
EXPECT_EQ(herf.getResourceSize(1), 140);

EXPECT_THROW(herf.getResourceSize(2), Common::Exception);
}

GTEST_TEST(HERFFileWithDict, findResourceHash) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.findResource(Common::hashStringDJB2("ozymandias.txt")), 0);
EXPECT_EQ(herf.findResource(0), 0xFFFFFFFF);
}

GTEST_TEST(HERFFileWithDict, findResourceName) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

EXPECT_EQ(herf.findResource("ozymandias", Aurora::kFileTypeTXT), 0);

EXPECT_EQ(herf.findResource("ozymandias", Aurora::kFileTypeBMP), 0xFFFFFFFF);
EXPECT_EQ(herf.findResource("nope" , Aurora::kFileTypeTXT), 0xFFFFFFFF);
EXPECT_EQ(herf.findResource("nope" , Aurora::kFileTypeBMP), 0xFFFFFFFF);
}

GTEST_TEST(HERFFileWithDict, getResource) {
Common::MemoryReadStream *stream =
new Common::MemoryReadStream(kHERFFileWithDict, sizeof(kHERFFileWithDict));

const Aurora::HERFFile herf(stream);

Common::SeekableReadStream *file = herf.getResource(0);
ASSERT_NE(file, static_cast<Common::SeekableReadStream *>(0));

ASSERT_EQ(file->size(), sizeof(kFileData) - 1);

for (size_t i = 0; i < sizeof(kFileData) - 1; i++)
EXPECT_EQ(file->readByte(), kFileData[i]) << "At index " << i;

delete file;
}
5 changes: 5 additions & 0 deletions tests/aurora/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,8 @@ check_PROGRAMS += tests/aurora/test_rimfile
tests_aurora_test_rimfile_SOURCES = tests/aurora/rimfile.cpp
tests_aurora_test_rimfile_LDADD = $(aurora_LIBS)
tests_aurora_test_rimfile_CXXFLAGS = $(test_CXXFLAGS)

check_PROGRAMS += tests/aurora/test_herffile
tests_aurora_test_herffile_SOURCES = tests/aurora/herffile.cpp
tests_aurora_test_herffile_LDADD = $(aurora_LIBS)
tests_aurora_test_herffile_CXXFLAGS = $(test_CXXFLAGS)

0 comments on commit c314e4e

Please sign in to comment.