tinygo/testdata
Ayke van Laethem d94f42f6e2 crypto/rand: replace this package with a TinyGo version
This package provides access to an operating system resource
(cryptographic numbers) and so needs to be replaced with a TinyGo
version that does this in a different way.

I've made the following choices while adding this feature:

  - I'm using the getentropy call whenever possible (most POSIX like
    systems), because it is easier to use and more reliable. Linux is
    the exception: it only added getentropy relatively recently.
  - I've left bare-metal implementations to a future patch. This because
    it's hard to reliably get cryptographically secure random numbers on
    embedded devices: most devices do not have a hardware PRNG for this
    purpose.
2021-06-21 18:22:31 +02:00
..
cgo cgo: implement prefix parsing 2021-05-21 17:54:13 +02:00
alias.go
alias.txt
atomic.go
atomic.txt
binop.go
binop.txt
calls.go
calls.txt compiler: implement func value and builtin defers 2020-07-31 01:48:57 +02:00
channel.go
channel.txt runtime: add cap and len support for chans 2020-05-12 01:17:27 +02:00
env.go crypto/rand: replace this package with a TinyGo version 2021-06-21 18:22:31 +02:00
env.txt crypto/rand: replace this package with a TinyGo version 2021-06-21 18:22:31 +02:00
filesystem.go
filesystem.txt
float.go
float.txt compiler: test float to int conversions and fix upper-bound calculation 2021-01-19 14:02:32 +01:00
gc.go
gc.txt runtime: implement a simple mark/sweep garbage collector 2018-11-18 19:18:39 +01:00
goroutines.go compiler: add support for running a builtin in a goroutine 2021-05-26 20:21:08 +02:00
goroutines.txt main: rename goroutine tests 2021-05-26 20:21:08 +02:00
init.go
init.txt
init_multi.go
init_multi.txt
interface.go compiler: add support for anonymous type asserts 2020-03-29 08:39:07 +02:00
interface.txt
json.go
json.txt
ldflags.go main: implement -ldflags="-X ..." 2021-04-09 18:33:48 +02:00
ldflags.txt main: implement -ldflags="-X ..." 2021-04-09 18:33:48 +02:00
map.go interp: remove map support 2021-04-21 07:37:22 +02:00
map.txt interp: remove map support 2021-04-21 07:37:22 +02:00
math.go
math.txt
print.go
print.txt
reflect.go reflect: implement AppendSlice 2021-05-22 21:41:06 +02:00
reflect.txt reflect: implement New function 2021-04-12 14:49:26 +02:00
slice.go
slice.txt
sort.go
sort.txt
stdlib.go wasm: use WASI ABI for exit function 2021-04-15 08:45:08 +02:00
stdlib.txt os: implement virtual filesystem support 2020-05-13 08:08:57 +02:00
string.go
string.txt
structs.go
structs.txt
zeroalloc.go testdata: fix formatting 2020-05-12 01:17:27 +02:00
zeroalloc.txt