Remove test directory

This commit is contained in:
Eryn Wells 2015-10-16 23:14:56 -07:00
parent c56cc557f8
commit de2d8602e1
2 changed files with 0 additions and 46 deletions

View file

@ -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')

View file

@ -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();
}