1#!/bin/sh 2 3# SPDX-License-Identifier: BSD-3-Clause 4# Copyright(c) 2019 Intel Corporation. All rights reserved. 5# Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com> 6 7octave --no-gui sof_test_perf_top.m 8if [ $? -eq 0 ]; then 9 echo "Test passed." 10 exit 0 11else 12 echo "Test failed." >&2 13 exit 1 14fi 15