---
byo run-tests: test/tsv-lib-test.sh

	test-add-const-column
name	age
alice	10
bob	20
host_name	name	age
bdc3d52d2eb0	alice	10
bdc3d52d2eb0	bob	20
	OK
	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
	OK
	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

devtools/byo.sh: 3 tests passed.