a4b77758f0
And adjust highlighting/testing scripts to deal with this.
9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
rm -f fragments/*.rs
|
|
mkdir -p fragments
|
|
node extract-tests.js $1
|
|
for F in `ls fragments/*.rs`; do
|
|
$RUSTC $F > /dev/null
|
|
if [[ $? != 0 ]] ; then echo $F; fi
|
|
done
|