diff --git a/prt/tests/compute-rs/Makefile b/prt/tests/compute-rs/Makefile index 22a6f45d..0e8f98a3 100644 --- a/prt/tests/compute-rs/Makefile +++ b/prt/tests/compute-rs/Makefile @@ -16,19 +16,19 @@ create-image: @docker build -t cartesi/prt-compute:rs -f Dockerfile ../../../ test-simple: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-simple-rs \ --env MACHINE_PATH=$(SIMPLE_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:rs test-stress: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-stress-rs \ --env MACHINE_PATH=$(STRESS_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:rs test-doom: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-doom-rs \ --env MACHINE_PATH=$(DOOM_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:rs diff --git a/prt/tests/compute/Makefile b/prt/tests/compute/Makefile index e69dd2e1..2bc9f63a 100644 --- a/prt/tests/compute/Makefile +++ b/prt/tests/compute/Makefile @@ -16,19 +16,19 @@ create-image: @docker build -t cartesi/prt-compute:lua -f Dockerfile ../../../ test-simple: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-simple \ --env MACHINE_PATH=$(SIMPLE_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:lua test-stress: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-stress \ --env MACHINE_PATH=$(STRESS_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:lua test-doom: create-image - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-doom \ --env MACHINE_PATH=$(DOOM_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ cartesi/prt-compute:lua @@ -41,7 +41,7 @@ clean-graphics: @rm -r pixels outputs test-doom-with-graphics: create-image create-doom-dirs - @docker run --rm --name prt-compute-test \ + @docker run --rm --name prt-compute-test-doom-with-graphics \ --env MACHINE_PATH=$(DOOM_MACHINE_PATH) \ --env LUA_NODE=$(LUA_NODE) \ --mount type=bind,source="$(shell pwd)/pixels",target=/app/pixels \ diff --git a/prt/tests/rollups/Makefile b/prt/tests/rollups/Makefile index 48bcb6e8..8a5eb8a5 100644 --- a/prt/tests/rollups/Makefile +++ b/prt/tests/rollups/Makefile @@ -8,7 +8,7 @@ create-image: @docker build -t cartesi/prt-rollups:test -f Dockerfile ../../../ test-echo: create-image - @docker run --rm --name rollups-echo-test \ + @docker run --rm --name prt-rollups-test-echo \ --env MACHINE_PATH=$(ECHO_MACHINE_PATH) \ cartesi/prt-rollups:test