[bugpoint] Move test content to the tests/ directory;

This commit is contained in:
Benjamin Bouvier
2019-10-11 17:00:43 +02:00
parent a5efd2a625
commit 0340ddbb65
3 changed files with 79 additions and 83 deletions

View File

@@ -742,7 +742,8 @@ mod tests {
#[test]
fn test_reduce() {
const TEST: &'static str = include_str!("./bugpoint_test.clif");
const TEST: &'static str = include_str!("../tests/bugpoint_test.clif");
const EXPECTED: &'static str = include_str!("../tests/bugpoint_test_expected.clif");
let test_file = parse_test(TEST, ParseOptions::default()).unwrap();
@@ -752,89 +753,8 @@ mod tests {
for (func, _) in test_file.functions {
let (func, crash_msg) = reduce(isa, func, false).expect("Couldn't reduce test case");
assert_eq!(crash_msg, "test crash");
assert_eq!(
format!("{}", func),
"function u0:0(i64, i64, i64) system_v {
sig0 = (i64, i64, i16, i64, i64, i64, i64, i64) system_v
fn0 = u0:95 sig0
ebb0(v0: i64, v1: i64, v2: i64):
v113 -> v1
v124 -> v1
v136 -> v1
v148 -> v1
v160 -> v1
v185 -> v1
v222 -> v1
v237 -> v1
v241 -> v1
v256 -> v1
v262 -> v1
v105 = iconst.i64 0
trap user0
ebb99(v804: i64, v1035: i64, v1037: i64, v1039: i64, v1044: i64, v1052: i16, v1057: i64):
v817 -> v1035
v830 -> v1037
v844 -> v1039
v857 -> v1039
v939 -> v1039
v1042 -> v1039
v1050 -> v1039
v908 -> v1044
v917 -> v1044
v921 -> v1044
v1043 -> v1044
v960 -> v1052
v990 -> v1052
v1051 -> v1052
v1055 -> v1052
v963 -> v1057
v1056 -> v1057
v1060 -> v1057
trap user0
ebb101:
v829 = iconst.i64 0
v935 -> v829
v962 -> v829
v992 -> v829
v1036 -> v829
v1049 -> v829
trap user0
ebb102:
v842 = iconst.i64 0
v976 -> v842
v989 -> v842
v1038 -> v842
v1061 -> v842
trap user0
ebb105:
v883 = iconst.i64 0
v934 -> v883
v961 -> v883
v991 -> v883
v1005 -> v883
v1048 -> v883
trap user0
ebb114:
v951 = iconst.i64 0
v988 -> v951
trap user0
ebb117:
v987 = iconst.i64 0
call fn0(v0, v105, v1052, v883, v829, v987, v951, v842)
trap user0
}
"
);
assert_eq!(format!("{}", func), EXPECTED.replace("\r\n", "\n"));
}
}
}