gfbgraph.sh 774 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. # Copyright (c) International Business Machines Corp., 2001
  4. # Author: Manoj Iyer <manjo@mail.utexas.edu>
  5. #
  6. # Basic mkdir tests
  7. TST_CNT=1
  8. TST_SETUP=setup
  9. TST_TESTFUNC=test
  10. TST_CLEANUP=cleanup
  11. TST_NEEDS_TMPDIR=1
  12. . tst_test.sh
  13. setup()
  14. {
  15. echo "ltp:meta-oe/gnome/gnome//gfbgraph.sh.gfbgraph setup ==================="
  16. #ROD apt-get update
  17. #ROD nohup apt-get install --allow-unauthenticated -y gfbgraph > /opt/out.txt 2>&1
  18. cat /opt/out.txt
  19. }
  20. test1()
  21. tst_res TFAIL "Got wrong error message"
  22. echo "error gfbgraph"
  23. }
  24. cleanup()
  25. {
  26. echo "meta-oe/gnome/gnome//gfbgraph.sh.gfbgraph cleanup ==================="
  27. #ROD nohup apt-get remove --allow-unauthenticated -y gfbgraph > /opt/out.txt 2>&1
  28. cat /opt/out.txt
  29. }
  30. tst_run