*** Running test-add-const-column
name	age
alice	10
bob	20
host_name	name	age
ad00b7ec150d	alice	10
ad00b7ec150d	bob	20
OK  test-add-const-column
*** Running test-concat-rows
name,age
alice,0
bob,10
carol,20
FATAL: Invalid header in '_tmp/bad.csv': 'name,age,another'.  Expected 'name,age'
name,age
alice,0
bob,10
carol,20
Expected failure OK
OK  test-concat-rows
*** Running test-tsv2html
<table id="test2">
  <thead>
    <tr>
    <td>name</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td> carol </td>
    </tr>
  </tbody>
  <colgroup>
    <col id="name" type="case-insensitive" />
  </colgroup>
</table>
OK  test-tsv2html

test/tsv-lib-test.sh: 3 tests passed.