summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJędrzej Nowak <pigmej@gmail.com>2017-01-18 13:36:53 +0100
committerGitHub <noreply@github.com>2017-01-18 13:36:53 +0100
commit5de75389f8e7d7a040fc9ea0c453005ebe8f27a7 (patch)
tree9f1a2858c1dcac6f9aa57cfa86b340d60a9976e2
parent6757d9ff1732f4e0609887b038725c3aa6dc4987 (diff)
parent7a12120f7b2657b1eb3384b002619b7f5e4012ff (diff)
Merge pull request #242 from gyliu513/scheduler-typo
Fixed some typo in testing.md.
-rw-r--r--contributors/devel/testing.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/contributors/devel/testing.md b/contributors/devel/testing.md
index 467677ad..e67d81de 100644
--- a/contributors/devel/testing.md
+++ b/contributors/devel/testing.md
@@ -161,9 +161,9 @@ See `go help test` and `go help testflag` for additional info.
- This includes kubectl commands
* The preferred method of testing multiple scenarios or inputs
is [table driven testing](https://github.com/golang/go/wiki/TableDrivenTests)
- - Example: [TestNamespaceAuthorization](../../test/integration/auth/auth_test.go)
+ - Example: [TestNamespaceAuthorization](https://github.com/kubernetes/kubernetes/blob/master/test/integration/auth/auth_test.go)
* Each test should create its own master, httpserver and config.
- - Example: [TestPodUpdateActiveDeadlineSeconds](../../test/integration/pods/pods_test.go)
+ - Example: [TestPodUpdateActiveDeadlineSeconds](https://github.com/kubernetes/kubernetes/blob/master/test/integration/pods/pods_test.go)
* See [coding conventions](coding-conventions.md).
### Install etcd dependency
@@ -180,7 +180,7 @@ hack/install-etcd.sh # Installs in ./third_party/etcd
echo export PATH="\$PATH:$(pwd)/third_party/etcd" >> ~/.profile # Add to PATH
# Option b) install manually
-grep -E "image.*etcd" cluster/saltbase/etcd/etcd.manifest # Find version
+grep -E "image.*etcd" cluster/saltbase/salt/etcd/etcd.manifest # Find version
# Install that version using yum/apt-get/etc
echo export PATH="\$PATH:<LOCATION>" >> ~/.profile # Add to PATH
```
@@ -206,12 +206,12 @@ make test-integration # Run all integration tests.
```
This script runs the golang tests in package
-[`test/integration`](../../test/integration/).
+[`test/integration`](https://github.com/kubernetes/kubernetes/tree/master/test/integration).
### Run a specific integration test
-You can use also use the `KUBE_TEST_ARGS` environment variable with the `hack
-/test-integration.sh` script to run a specific integration test case:
+You can also use the `KUBE_TEST_ARGS` environment variable with the `hack/test-integration.sh`
+script to run a specific integration test case:
```sh
# Run integration test TestPodUpdateActiveDeadlineSeconds with the verbose flag set.