File tree 3 files changed +14
-16
lines changed
3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,18 @@ members = [
4
4
" builtins-test" ,
5
5
" compiler-builtins" ,
6
6
" crates/libm-macros" ,
7
+ " crates/musl-math-sys" ,
8
+ " crates/util" ,
7
9
" libm" ,
8
- # FIXME(libm): disabled until tests work in CI
9
- # "libm-test",
10
- # "crates/musl-math-sys",
11
- # "crates/util",
10
+ " libm-test" ,
12
11
]
13
12
14
13
default-members = [
15
14
" builtins-test" ,
16
15
" compiler-builtins" ,
17
16
" crates/libm-macros" ,
18
- # FIXME(libm): disabled until tests work in CI
19
- # "crates/libm-test"
20
17
" libm" ,
18
+ " libm-test" ,
21
19
]
22
20
23
21
exclude = [
Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ update_rlib_paths() {
58
58
update_rlib_paths
59
59
rm -f " ${rlib_paths[@]} "
60
60
61
- cargo build --target " $target "
62
- cargo build --target " $target " --release
63
- cargo build --target " $target " --features c
64
- cargo build --target " $target " --release --features c
65
- cargo build --target " $target " --features no-asm
66
- cargo build --target " $target " --release --features no-asm
67
- cargo build --target " $target " --features no-f16-f128
68
- cargo build --target " $target " --release --features no-f16-f128
61
+ cargo build -p compiler_builtins - -target " $target "
62
+ cargo build -p compiler_builtins - -target " $target " --release
63
+ cargo build -p compiler_builtins - -target " $target " --features c
64
+ cargo build -p compiler_builtins - -target " $target " --release --features c
65
+ cargo build -p compiler_builtins - -target " $target " --features no-asm
66
+ cargo build -p compiler_builtins - -target " $target " --release --features no-asm
67
+ cargo build -p compiler_builtins - -target " $target " --features no-f16-f128
68
+ cargo build -p compiler_builtins - -target " $target " --release --features no-f16-f128
69
69
70
70
PREFIX=${target// unknown-/ } -
71
71
case " $target " in
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ macro_rules! callback {
19
19
20
20
#[ test]
21
21
fn test_for_each_function_all_included ( ) {
22
- let all_functions: HashSet < _ > = include_str ! ( "../../../ etc/function-list.txt" )
22
+ let all_functions: HashSet < _ > = include_str ! ( "../../etc/function-list.txt" )
23
23
. lines ( )
24
24
. filter ( |line| !line. starts_with ( "#" ) )
25
25
. collect ( ) ;
@@ -52,7 +52,7 @@ fn ensure_list_updated() {
52
52
}
53
53
54
54
let res = Command :: new ( "python3" )
55
- . arg ( Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) ) . join ( "../../ etc/update-api-list.py" ) )
55
+ . arg ( Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) ) . join ( "../etc/update-api-list.py" ) )
56
56
. arg ( "--check" )
57
57
. status ( )
58
58
. unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments