renamed for latest fips-googletest update

master
Martin Gerhardy 2016-03-11 07:48:41 +01:00
parent 178a4cdb25
commit ea06696aec
9 changed files with 18 additions and 18 deletions

View File

@ -8,10 +8,10 @@ fips_begin_module(attrib)
fips_deps(core commonlua)
fips_end_module()
begin_googleunittest(attrib)
gtest_begin(attrib)
fips_dir(tests)
fips_files(
AttributesTest.cpp
)
fips_deps(attrib)
end_googleunittest()
gtest_end()

View File

@ -78,7 +78,7 @@ fips_begin_module(backend)
fips_deps(network io core util voxel attrib cooldown dbpost simpleai ${SDL2_LIBRARIES})
fips_end_module()
begin_googleunittest(backend)
gtest_begin(backend)
fips_dir(tests)
fips_files(
SpawnMgrTest.cpp
@ -86,4 +86,4 @@ begin_googleunittest(backend)
StorageTest.cpp
)
fips_deps(network io core util voxel attrib cooldown dbpost simpleai backend)
end_googleunittest()
gtest_end()

View File

@ -5,10 +5,10 @@ fips_begin_module(commonlua)
fips_deps(core lua52)
fips_end_module()
begin_googleunittest(commonlua)
gtest_begin(commonlua)
fips_dir(tests)
fips_files(
LUATest.cpp
)
fips_deps(commonlua)
end_googleunittest()
gtest_end()

View File

@ -7,10 +7,10 @@ fips_begin_module(cooldown)
fips_deps(core)
fips_end_module()
begin_googleunittest(cooldown)
gtest_begin(cooldown)
fips_dir(tests)
fips_files(
CooldownMgrTest.cpp
)
fips_deps(cooldown)
end_googleunittest()
gtest_end()

View File

@ -25,7 +25,7 @@ fips_begin_module(core)
fips_deps(io ${SDL2_LIBRARIES})
fips_end_module()
begin_googleunittest(core)
gtest_begin(core)
fips_dir(tests)
fips_files(
RectTest.cpp
@ -39,4 +39,4 @@ begin_googleunittest(core)
TokenizerTest.cpp
)
fips_deps(core)
end_googleunittest()
gtest_end()

View File

@ -11,10 +11,10 @@ fips_begin_module(dbpost)
fips_deps(core ${PostgreSQL_LIBRARIES})
fips_end_module()
begin_googleunittest(dbpost)
gtest_begin(dbpost)
fips_dir(tests)
fips_files(
PQStoreTest.cpp
)
fips_deps(dbpost)
end_googleunittest()
gtest_end()

View File

@ -8,7 +8,7 @@ fips_begin_module(noise)
fips_deps(core noisepp accidentalnoise)
fips_end_module()
begin_googleunittest(noise)
gtest_begin(noise)
fips_dir(tests)
fips_files(
AccidentalNoiseTest.cpp
@ -17,4 +17,4 @@ begin_googleunittest(noise)
NoiseTestHelper.h
)
fips_deps(core noise accidentalnoise)
end_googleunittest()
gtest_end()

View File

@ -12,7 +12,7 @@ fips_begin_module(ui)
fips_deps(core io video turbobadger ${SDL2_LIBRARIES} ${OPENGL_LIBRARIES})
fips_end_module()
begin_googleunittest(ui)
gtest_begin(ui)
fips_dir(tests)
fips_files(
KeybindingParserTest.cpp
@ -21,4 +21,4 @@ begin_googleunittest(ui)
find_package(SDL2 REQUIRED)
fips_include_directories(. ${SDL2_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIR})
fips_deps(core io video turbobadger ui ${SDL2_LIBRARIES} ${OPENGL_LIBRARIES})
end_googleunittest()
gtest_end()

View File

@ -11,7 +11,7 @@ fips_begin_module(voxel)
fips_deps(core io noise zlib ${SDL2_LIBRARIES})
fips_end_module()
begin_googleunittest(voxel)
gtest_begin(voxel)
fips_dir(tests)
fips_files(
WorldTest.cpp
@ -19,4 +19,4 @@ begin_googleunittest(voxel)
find_package(SDL2 REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS})
fips_deps(voxel ${SDL2_LIBRARIES})
end_googleunittest()
gtest_end()