tools/nextid: pad 0 in next test id seq number

nextid returns the next available seq number, but it doesn't pad id
number with 0, e.g.

./tools/nextid ext4
23

After the fix it returns:

./tools/nextid ext4
023

This eases the process of moving tests around in a script.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
Eryu Guan
2017-01-24 18:30:04 +08:00
parent 614e33f1b5
commit aec50848c3
+1 -1
View File
@@ -103,7 +103,7 @@ def nextid_main():
xid = startid
while xid in xkeys:
xid += 1
print('%s/%d' % (group, xid))
print('%s/%03d' % (group, xid))
if __name__ == '__main__':
if 'nextid' in sys.argv[0]: