We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f149c4f commit ca78274Copy full SHA for ca78274
src/ast/test.rs
@@ -408,9 +408,11 @@ fn test_doc_symbol() {
408
);
409
}
410
411
+// FIXME: IDK why but win will fail the test(invalid memory access)
412
+// after Rust print out test succ..
413
+// Can't reproduce on my local machine
414
#[test]
-// #[ignore]
-#[cfg(feature = "jit")]
415
+#[cfg(all(feature = "jit", not(windows)))]
416
fn test_orc_jit() {
417
use crate::ast::compiler::{compile, Options};
418
use std::path::PathBuf;
src/repl/test.rs
@@ -57,7 +57,6 @@ impl super::editor::TermEditor for TestEditor {
57
58
59
60
-#[ignore]
61
62
#[cfg(test)]
63
fn test_repl() {
0 commit comments