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.
SupportedArchitectureTest
1 parent bd0a675 commit da51f2aCopy full SHA for da51f2a
crates/intrinsic-test/src/common/supporting_test.rs
@@ -0,0 +1,13 @@
1
+/// Architectures must support this trait
2
+/// to be successfully tested.
3
+pub trait SupportedArchitectureTest {
4
+ pub fn write_c_file(filename: &str);
5
+
6
+ pub fn write_rust_file(filename: &str);
7
8
+ pub fn build_c_file(filename: &str);
9
10
+ pub fn build_rust_file(filename: &str);
11
12
+ pub fn read_intrinsic_source_file(filename: &str);
13
+}
0 commit comments