summaryrefslogtreecommitdiffstats
path: root/tests/ts/misc/strtosize
blob: 41b45492dad98557c5f789c220811a915b71a2d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash

#
# Copyright (C) 2010 Karel Zak <kzak@redhat.com>
#
# This file is part of util-linux-ng.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
TS_TOPDIR="$(dirname $0)/../.."
TS_DESC="strtosize"

. $TS_TOPDIR/functions.sh
ts_init "$*"

$TS_HELPER_STRTOSIZE -1 >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 0 >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1 >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 123 >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 18446744073709551615 >> $TS_OUTPUT 2>&1

$TS_HELPER_STRTOSIZE 1K >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1KiB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1M >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1MiB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1G >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1GiB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1T >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1TiB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1P >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1PiB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1E >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1EiB >> $TS_OUTPUT 2>&1

$TS_HELPER_STRTOSIZE 1KB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1MB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1GB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1TB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1PB >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 1EB >> $TS_OUTPUT 2>&1

$TS_HELPER_STRTOSIZE "" >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE " " >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE " 1" >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE "1 " >> $TS_OUTPUT 2>&1

$TS_HELPER_STRTOSIZE 0x0a >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 0xff00 >> $TS_OUTPUT 2>&1
$TS_HELPER_STRTOSIZE 0x80000000 >> $TS_OUTPUT 2>&1

ts_finalize