mirror of
https://github.com/jeremyd/ergo.git
synced 2026-07-13 19:38:11 -07:00
more memory-efficient implementation of line reading
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// Copyright (c) 2020 Shivaram Lingamneni <slingamn@cs.stanford.edu>
|
||||
// released under the MIT license
|
||||
|
||||
package utils
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestRoundUp(t *testing.T) {
|
||||
assertEqual(RoundUpToPowerOfTwo(2), 2, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(3), 4, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(64), 64, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(65), 128, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(100), 128, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(1000), 1024, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(1025), 2048, t)
|
||||
assertEqual(RoundUpToPowerOfTwo(269435457), 536870912, t)
|
||||
}
|
||||
Reference in New Issue
Block a user