Advertisement
Guest User

Untitled

a guest
Sep 24th, 2014
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.14 KB | None | 0 0
  1. $ pwd
  2. /home/christian/my_files/computer/Perl6/repositories/rakudo
  3. $ PERL6LIB=lib:. ./perl6-m t/spec/S05-transliteration/trans.rakudo.moar
  4. 1..60
  5. ok 1 - Each side can be individual characters
  6. ok 2 - The two sides of the any pair can be strings interpreted as tr/// would multichar
  7. ok 3 - The two sides of the any pair can be strings interpreted as tr/// would range
  8. ok 4 - If the first character is a dash it isn't part of a range
  9. ok 5 - If the last character is a dash it isn't part of a range
  10. [ ... output shortened, runs as expected ]
  11. ok 60 - same with explicit for
  12. # FUDGED!
  13.  
  14. $ PERL6LIB=$(pwd)/lib:$(pwd) ./perl6-m t/spec/S05-transliteration/trans.rakudo.moar
  15. [... runs as expected; as the first command]
  16.  
  17. $ PERL6LIB=$(pwd)/lib:. ./perl6-m t/spec/S05-transliteration/trans.rakudo.moar   ## as perl6-roast-data: bin/rakudo.*.sh
  18. 1..60
  19. ok 1 - Each side can be individual characters
  20. ok 2 - The two sides of the any pair can be strings interpreted as tr/// would multichar
  21. ok 3 - The two sides of the any pair can be strings interpreted as tr/// would range
  22. ok 4 - If the first character is a dash it isn't part of a range
  23. Segmentation fault
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement