Delete some obsolete SPM expect scripts
These were used to test an early prototype version of SPM and are no
longer used today.
Change-Id: I3ec9caa50616f90e49c43f344d571e2548badd6f
Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
diff --git a/expect/tftf_no_ttst.exp b/expect/tftf_no_ttst.exp
deleted file mode 100644
index d05509f..0000000
--- a/expect/tftf_no_ttst.exp
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-# Expect script for Trusted Firmware Test Framework
-#
-
-source [file join [file dirname [info script]] handle-arguments.inc]
-
-expect {
- "Initial lookup level: 3" {
- puts "<<Using TTST, but it shouldn't be using it>>"
- exit_uart -1
- }
- "Tests Failed : 0" {
- puts "<<TFTF Success>>"
- exit_uart 0
- }
- "Tests Passed : 0" {
- puts "<<TFTF no tests passed>>"
- exit_uart -1
- }
- -re "Tests Failed : \[^0]" {
- puts "<<TFTF Fail>>"
- exit_uart -1
- }
- timeout {
- exit_timeout
- }
-}
-
-exit_uart -1
diff --git a/expect/tftf_ttst.exp b/expect/tftf_ttst.exp
deleted file mode 100644
index ec241ef..0000000
--- a/expect/tftf_ttst.exp
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-# Expect script for Trusted Firmware Test Framework
-#
-
-source [file join [file dirname [info script]] handle-arguments.inc]
-
-expect_string "Initial lookup level: 3"
-
-expect_string "Booting trusted firmware test framework" "Starting TFTF"
-
-expect {
- "Tests Failed : 0" {
- puts "<<TFTF Success>>"
- exit_uart 0
- }
- "Tests Passed : 0" {
- puts "<<TFTF no tests passed>>"
- exit_uart -1
- }
- -re "Tests Failed : \[^0]" {
- puts "<<TFTF Fail>>"
- exit_uart -1
- }
- timeout {
- exit_timeout
- }
-}
-
-exit_uart -1