6ced871d9a
Wrote tests for the functions implemented in 40558b2 and maybe made that
test a little more comprehensible.
Also made sure that fmt.sh and test.sh were being executed by bash all
the time (compatibility with other shells).
14 lines
135 B
Bash
Executable File
14 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cargo build
|
|
cargo build --manifest-path src/crt0/Cargo.toml
|
|
|
|
cd openlibm
|
|
make
|
|
cd ..
|
|
|
|
cd tests
|
|
make clean
|
|
make run
|