mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
These are mostly extractor tests, which now live in `2/extractor-tests`, and a single library tests that was added to the existing directory.
24 lines
308 B
Python
24 lines
308 B
Python
|
|
#ints
|
|
0
|
|
0L
|
|
1
|
|
1L
|
|
2
|
|
2L
|
|
123745
|
|
123745L
|
|
|
|
0xfffffff
|
|
0xfffffffL
|
|
|
|
#Avoid values between 32 and 64 bits, as long is 32 bits on windows and 64 bits on 64 bit linux machines.
|
|
|
|
|
|
|
|
#longs
|
|
0xeeeeeeeeeeeeeeee
|
|
0xeeeeeeeeeeeeeeeeL
|
|
100000000000000000000000000000000000000000000
|
|
100000000000000000000000000000000000000000000L
|