소스 검색

Failing regression test for the halfword emulator.

pull/8/merge
Paul Davis 14 년 전
부모
커밋
a8d15f425a
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +15
    -0
      test/008-halfword.t

+ 15
- 0
test/008-halfword.t 파일 보기

@ -0,0 +1,15 @@
#! /usr/bin/env escript
% This file is part of Jiffy released under the MIT license.
% See the LICENSE file for more information.
main([]) ->
code:add_pathz("ebin"),
code:add_pathz("test"),
etap:plan(unknown),
etap:is(jiffy:decode(<<"1">>) =:= 1, true, "1 =:= 1"),
etap:is(jiffy:decode(<<"1">>) == 1, true, "1 == 1"),
etap:end_tests().

불러오는 중...
취소
저장