summaryrefslogtreecommitdiffstats
path: root/third_party/rust/idna/tests/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/idna/tests/tests.rs')
-rw-r--r--third_party/rust/idna/tests/tests.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/rust/idna/tests/tests.rs b/third_party/rust/idna/tests/tests.rs
new file mode 100644
index 000000000..0a4ad03ee
--- /dev/null
+++ b/third_party/rust/idna/tests/tests.rs
@@ -0,0 +1,25 @@
+extern crate idna;
+extern crate rustc_serialize;
+extern crate test;
+
+mod punycode;
+mod uts46;
+
+fn main() {
+ let mut tests = Vec::new();
+ {
+ let mut add_test = |name, run| {
+ tests.push(test::TestDescAndFn {
+ desc: test::TestDesc {
+ name: test::DynTestName(name),
+ ignore: false,
+ should_panic: test::ShouldPanic::No,
+ },
+ testfn: run,
+ })
+ };
+ punycode::collect_tests(&mut add_test);
+ uts46::collect_tests(&mut add_test);
+ }
+ test::test_main(&std::env::args().collect::<Vec<_>>(), tests)
+}