hilti icon indicating copy to clipboard operation
hilti copied to clipboard

**NOTE**: This is outdated and no longer maintained. There's a new version at https://github.com/zeek/spicy.

Results 28 hilti issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to compile Hilti on Debian 9 (fresh install). I have all the required dependencies, compiled and installed from their source. I've ran into several problems that I...

I'm building hilti with bro following the instructions on the web site: http://www.icir.org/hilti/install/index.html I'm building on Ubuntu 14.04 with clang 3.9. I've successfully built bro. I've run the bro tests...

I am developing a protocol analyzer using Spicy, using the BRO/HILTI/SPICY docker image posted at the following URL: https://hub.docker.com/r/rsmmr/hilti/ In my Spicy protocol analyzer, I am trying to match a...

Hello ! It seems that "&convert" in a bitfield is not well supported. ``` type Foo = enum{BAR1=0, BAR2=1}; export type test = unit{ f1 : bitfield(8){ b1 : 0..3...

Setting the bitorder globally for the module apparently has no effect: ``` # cat mini.spicy module Mini; %bitorder=Spicy::BitOrder::MSB0; export type Test = unit { bits : bitfield(8) { b0: 0;...

``` # cat mini.spicy module Mini; export type Test = unit { b : uint8; }; # printf "\xFE" | spicy-dump mini.spicy < b=-2 > ``` Correct would be b=254...

``` module Mini; export type AItem = unit { a : uint16; a_list : list &count=self.a; }; type BItem = unit(f: AItem) { b : uint16; b_list : list &count=self.b;...

``` # btest -d spicy/unit/wrong-id.spicy [ 66%] spicy.unit.wrong-id-3 ... failed % 'btest-diff output' failed unexpectedly (exit code 1) % cat .diag == File =============================== : internal error, $$ not bound...

``` # btest -d spicy/double/parse.spicy [ 0%] spicy.double.parse ... failed % 'btest-diff output' failed unexpectedly (exit code 1) % cat .diag == File =============================== == Diff =============================== --- /tmp/test-diff.2422.output.baseline.tmp 2017-01-13...

The hilti/tuple/wrong-index unit test fails because of a segmentation fault: ``` # btest -d hilti/tuple/wrong-index.hlt [ 33%] hilti.tuple.wrong-index-2 ... failed % 'btest-diff output' failed unexpectedly (exit code 1) % cat...