summaryrefslogtreecommitdiff
path: root/tests/run-make/libtest-junit/f.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/libtest-junit/f.rs')
-rw-r--r--tests/run-make/libtest-junit/f.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/run-make/libtest-junit/f.rs b/tests/run-make/libtest-junit/f.rs
new file mode 100644
index 00000000000..d360d77317d
--- /dev/null
+++ b/tests/run-make/libtest-junit/f.rs
@@ -0,0 +1,23 @@
+#[test]
+fn a() {
+ println!("print from successful test");
+ // Should pass
+}
+
+#[test]
+fn b() {
+ println!("print from failing test");
+ assert!(false);
+}
+
+#[test]
+#[should_panic]
+fn c() {
+ assert!(false);
+}
+
+#[test]
+#[ignore = "msg"]
+fn d() {
+ assert!(false);
+}