This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
320 B

  1. #!/bin/sh
  2. echo -n $0: 'Beginning ellipsis... '
  3. cat >test.in <<eof
  4. This is the first sentence "... This is the second one".
  5. eof
  6. cat >test.ref <<eof
  7. No phrases in 2 sentences found.
  8. eof
  9. sh ./test/rundiction test.in >test.data
  10. if cmp test.ref test.data
  11. then
  12. rm -f test.*
  13. echo passed
  14. else
  15. echo failed
  16. exit 1
  17. fi