File: test_base.cpp

package info (click to toggle)
sleuthkit 4.10.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 17,248 kB
  • sloc: ansic: 142,208; cpp: 50,346; java: 27,140; xml: 2,419; perl: 882; python: 508; makefile: 416; sh: 184
file content (39 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * The Sleuth Kit
 *
 *
 * Copyright (c) 2010 Basis Technology Corp.  All Rights reserved
 *
 * This software is distributed under the Common Public License 1.0
 */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <libtsk.h>
#include <cppunit/CompilerOutputter.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>



int main(int argc, char **argv) {
	// Get the top level suite from the registry
	  CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();

	  // Adds the test to the list of test to run
	  CppUnit::TextUi::TestRunner runner;
	  runner.addTest( suite );

	  // Change the default outputter to a compiler error format outputter
	  runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
	                                                       std::cerr ) );
	  // Run the tests.
	  bool wasSuccessful = runner.run();

	  // Return error code 1 if the one of test failed.
	  return wasSuccessful ? 0 : 1;
}