evolution-data-server-native.sh 916 B

123456789101112131415161718192021222324252627282930313233343536
  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//evolution-data-server-native.sh.evolution-data-server-native setup ==================="
  16. #ROD apt-get update
  17. #ROD nohup apt-get install --allow-unauthenticated -y evolution-data-server-native > /opt/out.txt 2>&1
  18. cat /opt/out.txt
  19. }
  20. test1()
  21. {
  22. tst_res TFAIL "Got wrong error message"
  23. echo "error evolution-data-server-native"
  24. }
  25. cleanup()
  26. {
  27. echo "meta-oe/gnome/gnome//evolution-data-server-native.sh.evolution-data-server-native cleanup ==================="
  28. #ROD nohup apt-get remove --allow-unauthenticated -y evolution-data-server-native > /opt/out.txt 2>&1
  29. cat /opt/out.txt
  30. }
  31. tst_run