getopt_long.stdout 707 B

1234567891011121314151617181920
  1. --- Running: test --test0 -a
  2. getopt_long returned 1, argument test0=(null)
  3. Option -a with value (null)
  4. --- Running: test --test1 -a
  5. getopt_long returned 0, set flag to 2, argument test1=(null)
  6. Option -a with value (null)
  7. --- Running: test --test2 -a
  8. getopt_long returned 3, argument test2=(null)
  9. Option -a with value (null)
  10. --- Running: test --test2=arg -a
  11. getopt_long returned 3, argument test2=arg
  12. Option -a with value (null)
  13. --- Running: test --test3 -a
  14. getopt_long returned 4, argument test3=-a
  15. --- Running: test --test3=arg -a
  16. getopt_long returned 4, argument test3=arg
  17. Option -a with value (null)
  18. --- Running: test --test3 arg -a
  19. getopt_long returned 4, argument test3=arg
  20. Option -a with value (null)