), have %s", ftyp))
}
testType := ftyp.In(2)
mp := reflect.New(reflect.MapOf(stringT, testType))
return mp.Elem()
}
func sortedMapKeys(m reflect.Value) []string {
keys := make([]string, m.Len())
for i, k := range m.MapKeys() {
keys[i] = k.String()
}
sort.Strings(keys)
return keys
}
func runTestFunc(runTest interface{}, t *testing.T, name string, m reflect.Value, key string) {
reflect.ValueOf(runTest).Call([]reflect.Value{
reflect.ValueOf(t),
reflect.ValueOf(name),
m.MapIndex(reflect.ValueOf(key)),
})
}
* | Fix license information for portgs that use "the same license as Perl". | mat | 2018-02-04 | 1 | -1/+1 |
* | Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l. | mat | 2016-04-01 | 1 | -5/+5 |
* | - Update to 0.13 and unbreak this port | sunpoet | 2015-07-28 | 2 | -6/+4 |
* | Mark BROKEN: Fails to configure | antoine | 2015-06-18 | 1 | -0/+2 |
* | - Update to 0.12 | sunpoet | 2015-05-14 | 2 | -8/+11 |
* | Update to 0.11, fixing Perl 5.19.2+ builds, give to perl@ | mat | 2015-04-13 | 2 | -6/+5 |
* | Change the way Perl modules are installed, update the default Perl to 5.18. | mat | 2014-11-26 | 2 | -3/+3 |
* | Cleanup plist | bapt | 2014-10-27 | 1 | -1/+0 |
* | Remove all the bootstrap files (.bs) from the plists. | mat | 2014-06-10 | 1 | -1/+0 |
* | - add stage support | az | 2014-01-30 | 2 | -3/+1 |
* | Add NO_STAGE all over the place in preparation for the staging support (cat: ... | bapt | 2013-09-21 | 1 | -0/+1 |
* | - Convert to new perl framework | az | 2013-08-05 | 1 | -1/+2 |