Last change
on this file since 942 was
942,
checked in by sam, 12 years ago
|
test: reorganise test suite and benchmark code.
|
-
Property svn:keywords set to
Id
|
File size:
599 bytes
|
Rev | Line | |
---|
[642] | 1 | // |
---|
| 2 | // Lol Engine |
---|
| 3 | // |
---|
| 4 | // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net> |
---|
| 5 | // This program is free software; you can redistribute it and/or |
---|
| 6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
| 7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
| 8 | // http://sam.zoy.org/projects/COPYING.WTFPL for more details. |
---|
| 9 | // |
---|
| 10 | |
---|
| 11 | #if defined HAVE_CONFIG_H |
---|
| 12 | # include "config.h" |
---|
| 13 | #endif |
---|
| 14 | |
---|
[911] | 15 | #include <cstdio> |
---|
[913] | 16 | #include <cstdlib> |
---|
[911] | 17 | |
---|
[912] | 18 | #include <lol/unit.h> |
---|
[642] | 19 | |
---|
[912] | 20 | int main(void) |
---|
[642] | 21 | { |
---|
[919] | 22 | lol::TextTestRunner runner; |
---|
[934] | 23 | bool success = runner.Run(); |
---|
[913] | 24 | return success ? EXIT_SUCCESS : EXIT_FAILURE; |
---|
[642] | 25 | } |
---|
| 26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.