Implement a simple config file parser
This commit is contained in:
parent
7744ac69f4
commit
a04dd647f6
20 changed files with 601 additions and 0 deletions
12
Tests/SimpleConf/TestConfigs/BasicConversions.conf
Normal file
12
Tests/SimpleConf/TestConfigs/BasicConversions.conf
Normal file
|
@ -0,0 +1,12 @@
|
|||
# First, we wanna test if it can even do the basics
|
||||
an int = 123456
|
||||
a float = 3.5
|
||||
a long (8B) = 121212121212121212
|
||||
a double = 0.0000128
|
||||
|
||||
# Now we want to see if it correctly blows up
|
||||
an incorrect char = 256
|
||||
unsigned = -34
|
||||
signed, but large = 3000000000
|
||||
mangled float = 3.f4
|
||||
mangled float 2 = 2.4f
|
Loading…
Add table
Add a link
Reference in a new issue