diff --git a/.travis.yml b/.travis.yml index 0f0a094..989a569 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,9 +21,9 @@ script: - cargo build --verbose - cargo test --verbose - cargo test --verbose --features parallel - - cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET - - cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET --features parallel - - cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET --release + - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET + - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel + - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --release - cargo doc - cargo clean && cargo build - rustdoc --test README.md -L target/debug -L target/debug/deps diff --git a/appveyor.yml b/appveyor.yml index aa1edb5..5e563db 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -50,6 +50,6 @@ build: false test_script: - cargo test --target %TARGET% - cargo test --features parallel --target %TARGET% - - cargo test --manifest-path gcc-test/Cargo.toml --target %TARGET% - - cargo test --manifest-path gcc-test/Cargo.toml --features parallel --target %TARGET% - - cargo test --manifest-path gcc-test/Cargo.toml --release --target %TARGET% + - cargo test --manifest-path cc-test/Cargo.toml --target %TARGET% + - cargo test --manifest-path cc-test/Cargo.toml --features parallel --target %TARGET% + - cargo test --manifest-path cc-test/Cargo.toml --release --target %TARGET%