[DEV] remove STL

This commit is contained in:
Edouard DUPIN 2017-09-07 23:38:26 +02:00
parent 55c71b8ed9
commit eb5618aaac
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ def get_maintainer():
def configure(target, my_module):
my_module.add_depend([
'egami',
'gtest',
'etest',
'test-debug',
'algue',
])

View File

@ -6,7 +6,7 @@
#include <test-debug/debug.hpp>
#include <etk/etk.hpp>
#include <gtest/gtest.h>
#include <etest/etest.hpp>
#include <egami/egami.hpp>
#include <algue/sha512.hpp>
@ -16,7 +16,7 @@ int main(int argc, const char *argv[]) {
::testing::InitGoogleTest(&argc, const_cast<char **>(argv));
// init etk log system and file interface:
etk::init(argc, argv);
// Run all test with gtest
// Run all test with etest
return RUN_ALL_TESTS();
}