Remove old test scripts (replaced by extensions/Makefile)

This commit is contained in:
Daniel Grunwald 2015-04-19 05:21:45 +02:00
parent f527c237f2
commit a60037e27f
2 changed files with 0 additions and 12 deletions

View File

@ -1,6 +0,0 @@
@c:\cygwin\bin\touch src/lib.rs
cargo build
@if errorlevel 1 exit /b 1
rustc testmodule.rs --extern rust-cpython=target\librust-cpython-211b85e007ec6e28.rlib -L "c:\Program Files\Python27\libs" -o testmodule.pyd
@if errorlevel 1 exit /b 1
python -c "import testmodule"

View File

@ -1,6 +0,0 @@
#!/bin/bash
set -xeu
cargo build
rustc testmodule.rs -L target/debug -L target/debug/deps -o testmodule.so
python -c "import testmodule; print(repr(testmodule.__author__))"