Remove test directory
This commit is contained in:
parent
c56cc557f8
commit
de2d8602e1
2 changed files with 0 additions and 46 deletions
|
@ -1,30 +0,0 @@
|
|||
# SConscript
|
||||
# vim: set ft=python:
|
||||
#
|
||||
# Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
import os.path
|
||||
|
||||
Import('env')
|
||||
|
||||
|
||||
subdirs = [
|
||||
# TODO: Put subdirectories here.
|
||||
]
|
||||
|
||||
for d in subdirs:
|
||||
env.SConscript(os.path.join(d, 'SConscript'), {'env': env})
|
||||
|
||||
|
||||
files = [
|
||||
# TODO: Put files here.
|
||||
'main.cc',
|
||||
]
|
||||
|
||||
objs = []
|
||||
for f in files:
|
||||
objs.append(env.Object(f))
|
||||
|
||||
# TODO: Add the library target for the package to test to LIBS.
|
||||
test = env.Program('test', objs, LIBS=['gtest'])
|
||||
Return('test')
|
16
test/main.cc
16
test/main.cc
|
@ -1,16 +0,0 @@
|
|||
/* main.cc
|
||||
* Eryn Wells <eryn@erynwells.me>>
|
||||
*/
|
||||
|
||||
/** Basic driver for unit tests. */
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
|
||||
int
|
||||
main(int argc,
|
||||
char *argv[])
|
||||
{
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue