summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLee Zher Huei <lee.zh.92@gmail.com>2015-07-24 01:18:46 +0100
committerLee Zher Huei <lee.zh.92@gmail.com>2015-07-24 01:18:46 +0100
commitef005d4f64d2ee2b35185d4fbdf2aea684cd4966 (patch)
tree5653f85ff2761b5b26dc814b135858dc668954b3 /bin
parentf697ec2fe022583dde5f3ae650f49cfd7f237c33 (diff)
Regex library Nrex initial port
Diffstat (limited to 'bin')
-rw-r--r--bin/tests/test_string.cpp22
1 files changed, 9 insertions, 13 deletions
diff --git a/bin/tests/test_string.cpp b/bin/tests/test_string.cpp
index 3c8d0f7d86..7b512a5d99 100644
--- a/bin/tests/test_string.cpp
+++ b/bin/tests/test_string.cpp
@@ -31,7 +31,7 @@
//#include "math_funcs.h"
#include <stdio.h>
#include "os/os.h"
-#include "drivers/trex/regex.h"
+#include "drivers/nrex/regex.h"
#include "test_string.h"
@@ -463,20 +463,16 @@ bool test_26() {
OS::get_singleton()->print("\n\nTest 26: RegEx\n");
RegEx regexp("(.*):(.*)");
- List<String> captures;
- bool match = regexp.match("name:password", &captures);
- printf("\tmatch: %s\n", match?"true":"false");
+ bool res = regexp.match("name:password");
+ printf("\tmatch: %s\n", res?"true":"false");
- printf("\t%i captures:\n", captures.size());
- List<String>::Element *I = captures.front();
- while (I) {
-
- printf("%ls\n", I->get().c_str());
-
- I = I->next();
- };
- return captures.size();
+ printf("\t%i captures:\n", regexp.get_capture_count());
+ for (int i = 0; i<regexp.get_capture_count(); i++)
+ {
+ printf("%ls\n", regexp.get_capture(i).c_str());
+ }
+ return res;
};
struct test_27_data {