init
This commit is contained in:
commit
aa8e3ef7d6
12 changed files with 479 additions and 0 deletions
23
test/run
Executable file
23
test/run
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/bash
|
||||
set -e
|
||||
cd "$(dirname "$(realpath "$0")")"
|
||||
|
||||
|
||||
(
|
||||
echo "Hello."
|
||||
echo "World."
|
||||
echo "---"
|
||||
echo "Empty line ↓"
|
||||
echo
|
||||
echo "---"
|
||||
echo "Waiting 1.5 sec."
|
||||
sleep 1.5s
|
||||
echo "Done."
|
||||
echo "---"
|
||||
echo "Ok."
|
||||
) | cargo run --release
|
||||
|
||||
(
|
||||
cd ../target/x86_64-unknown-linux-musl/release
|
||||
du -sh dated
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue