repeated.hxml 441 B

123456789101112131415161718
  1. # test defining the same define twice sets it to the most recent value,
  2. # regardless of if it uses a dash or underscore.
  3. # dash first, then underscore
  4. -D value-a=old value
  5. -D value_a=new value
  6. --macro define("value-b", "old value")
  7. --macro define("value_b", "new value")
  8. # underscore first, then dash
  9. -D value_c=old value
  10. -D value-c=new value
  11. --macro define("value_d", "old value")
  12. --macro define("value-d", "new value")
  13. --run Repeated