Ciro Santilli has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/27315 )

Change subject: tests: remove hello, already present in new framework
......................................................................

tests: remove hello, already present in new framework

Change-Id: I9ef75476c795cf91015b3ffb249fa77825eac1cb
---
D tests/test-progs/hello/.gitignore
D tests/test-progs/hello/bin/arm/linux/hello
D tests/test-progs/hello/bin/mips/linux/hello
D tests/test-progs/hello/bin/power/linux/hello
D tests/test-progs/hello/bin/riscv/linux/hello
D tests/test-progs/hello/bin/sparc/linux/hello
D tests/test-progs/hello/bin/x86/linux/hello
D tests/test-progs/hello/bin/x86/linux/hello32
D tests/test-progs/hello/src/Makefile.arm
D tests/test-progs/hello/src/Makefile.x86
D tests/test-progs/hello/src/hello.c
11 files changed, 0 insertions(+), 103 deletions(-)



diff --git a/tests/test-progs/hello/.gitignore b/tests/test-progs/hello/.gitignore
deleted file mode 100644
index 48c31c3..0000000
--- a/tests/test-progs/hello/.gitignore
+++ /dev/null
@@ -1,10 +0,0 @@
-bin/arm/linux/hello32-static
-bin/arm/linux/hello64-static
-
-bin/x86/linux/hello32-static
-bin/x86/linux/hello64-static
-bin/x86/linux/hello64-dynamic
-
-src/dockcross*
-src/*-dynamic
-src/*-static
diff --git a/tests/test-progs/hello/bin/arm/linux/hello b/tests/test-progs/hello/bin/arm/linux/hello
deleted file mode 100755
index 831ea7e..0000000
--- a/tests/test-progs/hello/bin/arm/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/mips/linux/hello b/tests/test-progs/hello/bin/mips/linux/hello
deleted file mode 100755
index a3db001..0000000
--- a/tests/test-progs/hello/bin/mips/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/power/linux/hello b/tests/test-progs/hello/bin/power/linux/hello
deleted file mode 100755
index 6619ae3..0000000
--- a/tests/test-progs/hello/bin/power/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/riscv/linux/hello b/tests/test-progs/hello/bin/riscv/linux/hello
deleted file mode 100755
index b26d16c..0000000
--- a/tests/test-progs/hello/bin/riscv/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/sparc/linux/hello b/tests/test-progs/hello/bin/sparc/linux/hello
deleted file mode 100755
index e254ae3..0000000
--- a/tests/test-progs/hello/bin/sparc/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/x86/linux/hello b/tests/test-progs/hello/bin/x86/linux/hello
deleted file mode 100755
index a3ec8dc..0000000
--- a/tests/test-progs/hello/bin/x86/linux/hello
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/bin/x86/linux/hello32 b/tests/test-progs/hello/bin/x86/linux/hello32
deleted file mode 100755
index 072773d..0000000
--- a/tests/test-progs/hello/bin/x86/linux/hello32
+++ /dev/null
Binary files differ
diff --git a/tests/test-progs/hello/src/Makefile.arm b/tests/test-progs/hello/src/Makefile.arm
deleted file mode 100644
index 1f02246..0000000
--- a/tests/test-progs/hello/src/Makefile.arm
+++ /dev/null
@@ -1,26 +0,0 @@
-SERVER_USER=
-SERVER_PATH=/z/www/htdocs/dist/current/test-progs/hello/bin/arm/linux
-FETCH_PATH=http://dist.gem5.org/dist/current/test-progs/hello/bin/arm/linux
-UPLOAD_LOCATION=$(SERVER_USER)daystrom.gem5.org:$(SERVER_PATH)
-
-all: hello64-static hello32-static
-
-upload: hello64-static hello32-static
-       scp hello64-static hello32-static $(UPLOAD_LOCATION)
-
-hello64-static: hello.c dockcross-arm64
-       ./dockcross-arm64 bash -c '$$CC hello.c -o hello64-static -static'
-
-hello32-static: hello.c dockcross-armv7
-       ./dockcross-armv7 bash -c '$$CC hello.c -o hello32-static -static'
-
-dockcross-arm64:
-       docker run --rm dockcross/linux-arm64 > ./dockcross-arm64
-       chmod +x ./dockcross-arm64
-
-dockcross-armv7:
-       docker run --rm dockcross/linux-armv7 > ./dockcross-armv7
-       chmod +x ./dockcross-armv7
-
-clean:
-       rm -f dockcross* hello64-static hello32-static
diff --git a/tests/test-progs/hello/src/Makefile.x86 b/tests/test-progs/hello/src/Makefile.x86
deleted file mode 100644
index 3df2d23..0000000
--- a/tests/test-progs/hello/src/Makefile.x86
+++ /dev/null
@@ -1,31 +0,0 @@
-SERVER_USER=
-SERVER_PATH=/z/www/htdocs/dist/current/test-progs/hello/bin/x86/linux
-FETCH_PATH=http://dist.gem5.org/dist/current/test-progs/hello/bin/x86/linux
-
-UPLOAD_LOCATION=$(SERVER_USER)daystrom.gem5.org:$(SERVER_PATH)
-
-all: hello64-static hello64-dynamic hello32-static
-
-
-upload: hello64-static hello64-dynamic hello32-static
-       scp hello64-static hello64-dynamic hello32-static $(UPLOAD_LOCATION)
-
-hello64-static: hello.c dockcross-x64
-       ./dockcross-x64 bash -c '$$CC hello.c -o hello64-static -static'
-
-hello64-dynamic: hello.c dockcross-x64
-       ./dockcross-x64 bash -c '$$CC hello.c -o hello64-dynamic'
-
-hello32-static: hello.c dockcross-x86
-       ./dockcross-x86 bash -c '$$CC hello.c -o hello32-static -static'
-
-dockcross-x64:
-       docker run --rm dockcross/linux-x64 > ./dockcross-x64
-       chmod +x ./dockcross-x64
-
-dockcross-x86:
-       docker run --rm dockcross/linux-x86 > ./dockcross-x86
-       chmod +x ./dockcross-x86
-
-clean:
-       rm -f dockcross-* hello64-static hello64-dynamic hello32-static
diff --git a/tests/test-progs/hello/src/hello.c b/tests/test-progs/hello/src/hello.c
deleted file mode 100644
index 9bf4ed5..0000000
--- a/tests/test-progs/hello/src/hello.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 2006 The Regents of The University of Michigan
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <stdio.h>
-
-int main(int argc, char* argv[])
-{
-    printf("Hello world!\n");
-    return 0;
-}
-

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/27315
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I9ef75476c795cf91015b3ffb249fa77825eac1cb
Gerrit-Change-Number: 27315
Gerrit-PatchSet: 1
Gerrit-Owner: Ciro Santilli <ciro.santi...@arm.com>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to