fix rpass core-run-destroy for android

This commit is contained in:
sh8281.kim 2013-11-07 19:22:18 +09:00
parent 22eb11c09b
commit f1cbb4d566

View file

@ -37,9 +37,12 @@ fn test_destroy_twice() {
fn test_destroy_actually_kills(force: bool) {
#[cfg(unix)]
#[cfg(unix,not(target_os="android"))]
static BLOCK_COMMAND: &'static str = "cat";
#[cfg(unix,target_os="android")]
static BLOCK_COMMAND: &'static str = "/system/bin/cat";
#[cfg(windows)]
static BLOCK_COMMAND: &'static str = "cmd";