#!/bin/sh # SPDX-License-Identifier: GPL-2.0-or-later # Copyright (c) International Business Machines Corp., 2001 # Author: Manoj Iyer # # Basic mkdir tests TST_CNT=1 TST_SETUP=setup TST_TESTFUNC=test TST_CLEANUP=cleanup TST_NEEDS_TMPDIR=1 . tst_test.sh setup() { echo "ltp:meta-oe/gnome/gnome//yelp-xsl.sh.yelp-xsl setup ===================" #ROD apt-get update ROD nohup apt-get install --allow-unauthenticated -y yelp-xsl > /opt/out.txt 2>&1 cat /opt/out.txt } test1() { strres=`dpkg -L yelp-xsl 2>&1` if [[ "$strres" == */usr/share/yelp-xsl/js/highlight.pack.js* ]] then tst_res TPASS "Got correct error message" else tst_res TFAIL "Got wrong error message" echo $strres fi } cleanup() { echo "meta-oe/gnome/gnome//yelp-xsl.sh.yelp-xsl cleanup ===================" #ROD nohup apt-get remove --allow-unauthenticated -y yelp-xsl > /opt/out.txt 2>&1 cat /opt/out.txt } tst_run