Posted to tcl by miguel at Sat Jul 19 20:48:53 GMT 2008view raw

  1. ==== env-4.3 setting international environment variables FAILED
  2. ==== Contents of test case:
  3.  
  4. set env(\ua7) \ub6
  5. getenv
  6.  
  7. ---- Result was:
  8. \u00c2\u00a7=\u00c2\u00b6
  9. ---- Result should have been (exact matching):
  10. \u00a7=\u00b6
  11. ==== env-4.3 FAILED
  12.  
  13.  
  14.  
  15. ==== env-4.4 changing international environment variables FAILED
  16. ==== Contents of test case:
  17.  
  18. set env(\ua7) \ua7
  19. getenv
  20.  
  21. ---- Result was:
  22. \u00c2\u00a7=\u00c2\u00a7
  23. ---- Result should have been (exact matching):
  24. \u00a7=\u00a7
  25. ==== env-4.4 FAILED
  26.  
  27.  
  28.  
  29. ==== env-4.5 unsetting international environment variables FAILED
  30. ==== Contents of test case:
  31.  
  32. set env(\ub6) \ua7
  33. unset env(\ua7)
  34. set result [getenv]
  35. unset env(\ub6)
  36. set result
  37.  
  38. ---- Result was:
  39. \u00c2\u00b6=\u00c2\u00a7
  40. ---- Result should have been (exact matching):
  41. \u00b6=\u00a7
  42. ==== env-4.5 FAILED