This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/analyzer/func-section_test.go

21 lines
406 B
Go
Raw Normal View History

2022-10-18 13:00:17 -06:00
package analyzer
import "testing"
func TestFuncSection (test *testing.T) {
checkTree ("../tests/analyzer/funcSection", false,
`
typeSection ro ../tests/analyzer/funcSection.aCString
type 1 pointer {
type 1 basic U8
}
2022-10-18 13:00:17 -06:00
funcSection ro ../tests/analyzer/funcSection.bArbitrary
block
arbitraryPhrase
command 'puts'
2022-10-19 11:27:48 -06:00
castPhrase
2022-10-18 13:00:17 -06:00
type aCString
arg string 'hellorld` + "\000" + `'
`, test)
}