From de2d8602e1e8b7831e3508f40e5ca54da7d16fba Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 16 Oct 2015 23:14:56 -0700 Subject: [PATCH] Remove test directory --- test/SConscript | 30 ------------------------------ test/main.cc | 16 ---------------- 2 files changed, 46 deletions(-) delete mode 100644 test/SConscript delete mode 100644 test/main.cc diff --git a/test/SConscript b/test/SConscript deleted file mode 100644 index 2f3afcc..0000000 --- a/test/SConscript +++ /dev/null @@ -1,30 +0,0 @@ -# SConscript -# vim: set ft=python: -# -# Eryn Wells - -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') diff --git a/test/main.cc b/test/main.cc deleted file mode 100644 index 76cfc21..0000000 --- a/test/main.cc +++ /dev/null @@ -1,16 +0,0 @@ -/* main.cc - * Eryn Wells > - */ - -/** Basic driver for unit tests. */ - -#include "gtest/gtest.h" - - -int -main(int argc, - char *argv[]) -{ - ::testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -}