├── .gitignore ├── Makefile ├── README.md ├── doc ├── TECO.md ├── action.md ├── atsign.md ├── basics.md ├── colon.md ├── conventions.md ├── delete.md ├── display.md ├── dot.md ├── env.md ├── errors.md ├── file.md ├── flags.md ├── glossary.md ├── goto.md ├── ifthen.md ├── index.md ├── insert.md ├── internals.md ├── keymap.md ├── linux.md ├── loops.md ├── macos.md ├── messages.md ├── misc.md ├── missing.md ├── new.md ├── novice.md ├── openvms.md ├── oper.md ├── page.md ├── qregister.md ├── release.md ├── search.md ├── typeout.md ├── variables.md └── windows.md ├── etc ├── Doxyfile ├── Teco.pm ├── build │ ├── doc.mk │ ├── init.mk │ ├── lint.mk │ └── test.mk ├── make_commands.pl ├── make_errors.pl ├── make_options.pl ├── make_version.pl ├── pattern │ ├── _cmd_exec.c │ ├── _errors.c │ ├── _option_sys.c │ ├── errors.h │ ├── errors.md │ ├── exec.h │ └── version.h ├── std.lnt ├── test_commands.pl ├── test_errors.pl ├── test_options.pl └── xml │ ├── commands.xml │ ├── errors.xml │ ├── options.xml │ └── options.xsl ├── include ├── _cmd_exec.c ├── _errors.c ├── _option_sys.c ├── ascii.h ├── cmdbuf.h ├── display.h ├── editbuf.h ├── eflags.h ├── errors.h ├── estack.h ├── exec.h ├── file.h ├── keys.h ├── page.h ├── qreg.h ├── search.h ├── teco.h ├── term.h └── version.h ├── lib ├── date.tec ├── init.tec ├── pi.tec ├── show.tec ├── squish.tec └── vtedit.tec ├── src ├── a_cmd.c ├── bracket_cmd.c ├── build_str.c ├── case_cmd.c ├── cmd_buf.c ├── cmd_estack.c ├── cmd_exec.c ├── cmd_scan.c ├── color_cmd.c ├── ctrl_a_cmd.c ├── ctrl_t_cmd.c ├── ctrl_u_cmd.c ├── ctrl_v_cmd.c ├── ctrl_w_cmd.c ├── datetime_cmd.c ├── delete_cmd.c ├── display.c ├── e_pct_cmd.c ├── e_ubar_cmd.c ├── ea_cmd.c ├── eb_cmd.c ├── ec_cmd.c ├── ef_cmd.c ├── eg_cmd.c ├── ei_cmd.c ├── ek_cmd.c ├── el_cmd.c ├── em_cmd.c ├── en_cmd.c ├── env_sys.c ├── eo_cmd.c ├── ep_cmd.c ├── eq_cmd.c ├── equals_cmd.c ├── er_cmd.c ├── errors.c ├── esc_cmd.c ├── ew_cmd.c ├── ex_cmd.c ├── ez_cmd.c ├── fb_cmd.c ├── fd_cmd.c ├── ff_cmd.c ├── file.c ├── file_sys.c ├── fk_cmd.c ├── flag_cmd.c ├── fr_cmd.c ├── g_cmd.c ├── gap_buf.c ├── goto_cmd.c ├── if_cmd.c ├── insert_cmd.c ├── key_cmd.c ├── loop_cmd.c ├── m_cmd.c ├── map_cmd.c ├── memory.c ├── move_cmd.c ├── n_cmd.c ├── number_cmd.c ├── oper_cmd.c ├── option_sys.c ├── p_cmd.c ├── page_file.c ├── page_std.c ├── page_vm.c ├── pct_cmd.c ├── q_cmd.c ├── qreg.c ├── radix_cmd.c ├── s_cmd.c ├── search.c ├── status.c ├── stubs.c ├── teco.c ├── term_buf.c ├── term_in.c ├── term_out.c ├── term_rubout.c ├── term_sys.c ├── trace_cmd.c ├── type_cmd.c ├── u_cmd.c ├── ubar_cmd.c ├── var_cmd.c ├── w_cmd.c ├── x_cmd.c └── yank_cmd.c └── test ├── benchmarks ├── A_01.lis ├── A_02a.lis ├── A_02b.lis ├── A_02c.lis ├── A_02d.lis ├── BS.lis ├── DEL.lis ├── EA_01.lis ├── EC_01.lis ├── EE_01.lis ├── EG_01.lis ├── EG_02.lis ├── EG_03.lis ├── EG_04.lis ├── EG_05.lis ├── EH_01.lis ├── EH_02.lis ├── EH_03.lis ├── EH_04.lis ├── EH_05.lis ├── EH_06.lis ├── EI_04.lis ├── EL_04.lis ├── EL_05.lis ├── EL_06.lis ├── EL_07.lis ├── EL_08.lis ├── EM_01a.lis ├── EM_01b.lis ├── EM_01c.lis ├── EM_01d.lis ├── EM_01e.lis ├── EM_01f.lis ├── EM_01g.lis ├── EP_01.lis ├── E_ubar_01.lis ├── E_ubar_02.lis ├── FC_01.lis ├── FD_01.lis ├── FK_01.lis ├── FK_02.lis ├── FM_02.lis ├── FN_01.lis ├── FN_02.lis ├── FN_03.lis ├── FN_04.lis ├── FS_04.lis ├── F_ubar_01.lis ├── F_ubar_02.lis ├── G_01.lis ├── G_02.lis ├── G_03a.lis ├── G_03b.lis ├── G_04a.lis ├── G_04b.lis ├── K_01a.lis ├── LF_01.lis ├── L_01.lis ├── PI.lis ├── P_01.lis ├── P_02.lis ├── P_03.lis ├── P_04.lis ├── P_09.lis ├── P_10.lis ├── Q_01.lis ├── S_04.lis ├── S_05.lis ├── T_01.lis ├── T_02.lis ├── U_01.lis ├── V_01.lis ├── V_02.lis ├── V_03.lis ├── X_01.lis ├── X_02.lis ├── _A_01a.lis ├── _A_01b.lis ├── _A_01c.lis ├── _A_02.lis ├── _A_03.lis ├── _C.lis ├── _C_C.lis ├── _D_01.lis ├── _EA_01.lis ├── _EB_01.lis ├── _EC_01.lis ├── _ED_01.lis ├── _EG_01.lis ├── _EL_01.lis ├── _ER_01.lis ├── _ES_01.lis ├── _EV_01.lis ├── _EW_01.lis ├── _EX_01.lis ├── _E_03.lis ├── _E_04.lis ├── _G_G.lis ├── _G_space.lis ├── _G_star.lis ├── _N_01.lis ├── _N_02.lis ├── _O_01.lis ├── _S_01.lis ├── _T_01.lis ├── _T_02.lis ├── _T_03.lis ├── _T_04.lis ├── _T_05.lis ├── _U.lis ├── _U_01.lis ├── _U_02.lis ├── _U_03.lis ├── _U_04.lis ├── _X_01.lis ├── _Z_01.lis ├── basic_01.lis ├── basic_02.lis ├── bslash_01.lis ├── digits_01.lis ├── digits_03.lis ├── equals_01.lis ├── equals_02.lis ├── equals_03.lis ├── expr_05.lis ├── loop_05.lis ├── loop_06.lis ├── star.lis ├── ubar_01.lis └── ubar_02.lis └── scripts ├── A ├── A_01.test ├── A_02a.test ├── A_02b.test ├── A_02c.test └── A_02d.test ├── B └── B_01.test ├── BS └── BS.test ├── C ├── C_01a.test ├── C_01b.test ├── C_01c.test └── C_02.test ├── CR ├── CR_01.test └── CR_02.test ├── D ├── D_01a.test ├── D_01b.test ├── D_01c.test ├── D_01d.test ├── D_01e.test ├── D_01f.test ├── D_01g.test ├── D_02a.test └── D_02b.test ├── DEL └── DEL.test ├── E1 └── E1_01.test ├── E2 └── E2_01.test ├── E3 └── E3_01.test ├── E4 └── E4_01.test ├── EA └── EA_01.test ├── EB ├── EB_01a.test ├── EB_01b.test ├── EB_01c.test ├── EB_02a.test ├── EB_02b.test ├── EB_03a.test └── EB_03b.test ├── EC ├── EC_01.test ├── EC_02a.test ├── EC_02b.test └── EC_02c.test ├── ED ├── ED_01.test ├── ED_02a.test ├── ED_02b.test ├── ED_02c.test ├── ED_02d.test ├── ED_03.test └── ED_04.test ├── EE └── EE_01.test ├── EF ├── EF_01.test └── EF_02.test ├── EG ├── EG_01.test ├── EG_02.test ├── EG_03.test ├── EG_04.test └── EG_05.test ├── EH ├── EH_01.test ├── EH_02.test ├── EH_03.test ├── EH_04.test ├── EH_05.test └── EH_06.test ├── EI ├── EI_01a.test ├── EI_01b.test ├── EI_02a.test ├── EI_02b.test ├── EI_03a.test ├── EI_03b.test ├── EI_04.test ├── EI_04a.tec ├── EI_04b.tec ├── EI_04c.tec ├── EI_05.test ├── EI_05a.tec ├── EI_06.test ├── EI_06a.tec ├── EI_06b.tec └── EI_06c.tec ├── EJ ├── EJ_01a.test ├── EJ_01b.test └── EJ_02.test ├── EK ├── EK_01.test └── EK_02.test ├── EL ├── EL_01a.test ├── EL_01b.test ├── EL_02a.test ├── EL_02b.test ├── EL_03a.test ├── EL_03b.test ├── EL_04.test ├── EL_05.test ├── EL_06.test ├── EL_07.test └── EL_08.test ├── EM ├── EM_01a.test ├── EM_01b.test ├── EM_01c.test ├── EM_01d.test ├── EM_01e.test ├── EM_01f.test └── EM_01g.test ├── EN ├── EN_01.test ├── EN_02.test └── EN_03.test ├── EO ├── EO_01.test ├── EO_02.test └── EO_03.test ├── EP └── EP_01.test ├── EQ ├── EQ_01a.test ├── EQ_01b.test ├── EQ_02a.test ├── EQ_02b.test ├── EQ_03a.test ├── EQ_03b.test ├── EQ_04.test └── hello ├── ER ├── ER_01a.test ├── ER_01b.test ├── ER_02a.test ├── ER_02b.test ├── ER_03a.test └── ER_03b.test ├── ESC ├── ESC_01.test ├── ESC_02a.test └── ESC_02b.test ├── ET └── ET_01.test ├── EU └── EU_01.test ├── EW ├── EW_01a.test ├── EW_01b.test ├── EW_02a.test ├── EW_02b.test ├── EW_03a.test └── EW_03b.test ├── EX ├── EX_01a.test ├── EX_01b.test ├── EX_02a.test ├── EX_02b.test ├── EX_03a.test ├── EX_03b.test ├── EX_04a.test └── EX_04b.test ├── EY ├── EY_01a.test ├── EY_01b.test ├── EY_02a.test ├── EY_02b.test ├── EY_03a.test └── EY_03b.test ├── EZ ├── EZ_01.test ├── EZ_02.test └── EZ_03.test ├── E_pct ├── E_pct_01a.test ├── E_pct_01b.test ├── E_pct_02a.test ├── E_pct_02b.test ├── E_pct_03a.test ├── E_pct_03b.test ├── E_pct_04.test └── hello ├── E_ubar ├── E_ubar_01.test ├── E_ubar_02.test └── E_ubar_03.test ├── F1 ├── F1_01.test └── F1_02.test ├── F2 ├── F2_01.test └── F2_02.test ├── F3 ├── F3_01.test └── F3_02.test ├── FB └── FB_01.test ├── FC └── FC_01.test ├── FD └── FD_01.test ├── FF ├── FF_01a.test ├── FF_01b.test ├── FF_01c.test ├── FF_01d.test ├── FF_02.test └── FF_03.test ├── FK ├── FK_01.test └── FK_02.test ├── FL ├── FL_01a.test ├── FL_01b.test └── FL_01c.test ├── FM ├── FM_01a.test ├── FM_01b.test ├── FM_01c.test └── FM_02.test ├── FN ├── FN_01.test ├── FN_02.test ├── FN_03.test └── FN_04.test ├── FQ ├── FQ_01a.test ├── FQ_01b.test └── FQ_01c.test ├── FR ├── FR_01.test ├── FR_02.test ├── FR_03.test ├── FR_04.test └── FR_05.test ├── FS ├── FS_01a.test ├── FS_01b.test ├── FS_02a.test ├── FS_02b.test ├── FS_03a.test ├── FS_03b.test └── FS_04.test ├── FU ├── FU_01a.test ├── FU_01b.test └── FU_01c.test ├── F_ubar ├── F_ubar_01.test ├── F_ubar_02.test ├── F_ubar_03.test ├── F_ubar_04.test └── F_ubar_05.test ├── G ├── G_01.test ├── G_02.test ├── G_03a.test ├── G_03b.test ├── G_04a.test ├── G_04b.test ├── G_05a.test ├── G_05b.test ├── G_05c.test ├── G_05d.test └── G_05e.test ├── H └── H_01.test ├── I ├── I_01a.test ├── I_01b.test ├── I_01c.test ├── I_02a.test ├── I_02b.test └── I_02c.test ├── J ├── J_01a.test ├── J_01b.test ├── J_01c.test └── J_02.test ├── K ├── K_01a.test └── K_01b.test ├── L ├── L_01.test └── L_02.test ├── LF ├── LF_01.test ├── LF_02.test └── LF_03.test ├── M ├── M_01a.test ├── M_01b.test ├── M_01c.test ├── M_01d.test ├── M_01e.test ├── M_01f.test ├── M_01g.test ├── M_02a.test ├── M_02b.test ├── M_03a.test └── M_03b.test ├── N ├── N_01.test ├── N_02.test ├── N_03.test ├── N_04.test ├── N_05.test ├── N_06.test └── N_07.test ├── NUL ├── NUL_01.test ├── NUL_02.test └── NUL_03.test ├── O ├── O_01a.test ├── O_01b.test ├── O_02a.test ├── O_02b.test ├── O_03a.test ├── O_03b.test ├── O_03c.test ├── O_03d.test ├── O_04a.test ├── O_04b.test ├── O_04c.test ├── O_04d.test ├── O_05a.test ├── O_06a.test ├── O_06b.test ├── O_06c.test ├── O_06d.test ├── O_06e.test ├── O_06f.test ├── O_06g.test ├── O_06h.test ├── O_06i.test ├── O_07a.test ├── O_07b.test ├── O_07c.test ├── O_07d.test ├── O_07e.test ├── O_07f.test ├── O_07g.test ├── O_07h.test ├── O_07i.test ├── O_08a.test ├── O_08b.test ├── O_08c.test ├── O_08d.test ├── O_08e.test ├── O_08f.test ├── O_09a.test ├── O_09b.test ├── O_09c.test └── O_09d.test ├── P ├── P_01.test ├── P_02.test ├── P_03.test ├── P_04.test ├── P_05.test ├── P_06.test ├── P_07.test ├── P_08.test ├── P_09.test └── P_10.test ├── Q └── Q_01.test ├── R ├── R_01a.test ├── R_01b.test ├── R_01c.test └── R_02.test ├── S ├── S_01a.test ├── S_01b.test ├── S_02a.test ├── S_02b.test ├── S_03a.test ├── S_03b.test ├── S_04.test ├── S_05.test ├── S_06a.test ├── S_06b.test └── S_07.test ├── T ├── T_01.test └── T_02.test ├── TAB └── TAB_01.test ├── U ├── U_01.test ├── U_02a.test ├── U_02b.test ├── U_03a.test ├── U_03b.test ├── U_04a.test ├── U_04b.test ├── U_05a.test ├── U_05b.test ├── U_05c.test ├── U_06a.test ├── U_06b.test ├── U_06c.test ├── U_06d.test └── U_06e.test ├── V ├── V_01.test ├── V_02.test └── V_03.test ├── VT ├── VT_01.test └── VT_02.test ├── W ├── W_01a.test ├── W_01b.test ├── W_01c.test ├── W_01d.test ├── W_01e.test ├── W_01f.test ├── W_01g.test ├── W_01h.test ├── W_01i.test ├── W_01j.test ├── W_01k.test ├── W_02a.test ├── W_02b.test ├── W_02c.test ├── W_02d.test └── W_03.test ├── X ├── X_01.test └── X_02.test ├── Y ├── Y_01a.test ├── Y_01b.test ├── Y_02a.test ├── Y_02b.test ├── Y_02c.test ├── Y_03a.test └── Y_03b.test ├── Z └── Z_01.test ├── _A ├── _A_01a.test ├── _A_01b.test ├── _A_01c.test ├── _A_02.test └── _A_03.test ├── _B └── _B_01.test ├── _C ├── _C.test └── _C_C.test ├── _D └── _D_01.test ├── _E ├── _EA_01.test ├── _EB_01.test ├── _EC_01.test ├── _ED_01.test ├── _EG_01.test ├── _EL_01.test ├── _ER_01.test ├── _ES_01.test ├── _EV_01.test ├── _EW_01.test ├── _EX_01.test ├── _E_01.test ├── _E_02.test ├── _E_03.test ├── _E_04.test └── _Enn_01.test ├── _F └── _F_01.test ├── _G ├── _G_G.test ├── _G_space.test └── _G_star.test ├── _H └── _H_01.test ├── _N ├── _N_01.test └── _N_02.test ├── _O └── _O_01.test ├── _P └── _P_01.test ├── _Q └── _Q_01.test ├── _R ├── _R_01.test ├── _R_02.test └── _R_03.test ├── _S ├── _S_01.test └── _S_02.test ├── _T ├── _T_01.test ├── _T_02.test ├── _T_03.test ├── _T_04.test └── _T_05.test ├── _U ├── _U.test ├── _U_01.test ├── _U_02.test ├── _U_03.test ├── _U_04.test ├── _U_05.test └── _U_06.test ├── _V ├── _V_01a.test └── _V_01b.test ├── _W ├── _W_01a.test └── _W_01b.test ├── _X ├── _X_01.test ├── _X_02.test ├── _X_03.test └── _X_04.test ├── _Y └── _Y_01.test ├── _Z └── _Z_01.test ├── basic ├── basic_01.test └── basic_02.test ├── bracket ├── bracket_01.test ├── bracket_02.test ├── bracket_03.test └── bracket_04.test ├── bslash ├── bslash_01.test └── bslash_02.test ├── digits ├── digits_01.test ├── digits_02a.test ├── digits_02b.test └── digits_03.test ├── dot └── dot_01.test ├── equals ├── equals_01.test ├── equals_02.test └── equals_03.test ├── errors ├── ERR.test ├── ILL_01.test ├── ILL_02.test ├── ILL_03.test ├── ILL_04.test ├── POP.test ├── question.test └── slash.test ├── expr ├── expr_01.test ├── expr_02.test ├── expr_03a.test ├── expr_03b.test ├── expr_03c.test ├── expr_03d.test ├── expr_03e.test ├── expr_03f.test ├── expr_04.test ├── expr_05.test ├── expr_06.test ├── expr_07a.test ├── expr_07b.test └── expr_07c.test ├── flow ├── flow_01a.test ├── flow_01b.test ├── flow_01c.test ├── flow_02a.test ├── flow_02b.test ├── flow_03a.test └── flow_03b.test ├── if ├── if_01a.test ├── if_01b.test ├── if_01c.test ├── if_01d.test ├── if_02a.test ├── if_02b.test ├── if_02c.test ├── if_02d.test ├── if_02e.test ├── if_02f.test ├── if_02g.test ├── if_02h.test ├── if_02i.test ├── if_02j.test ├── if_02k.test ├── if_02l.test ├── if_02m.test ├── if_02n.test ├── if_02o.test ├── if_02p.test ├── if_02q.test ├── if_03a.test ├── if_03b.test ├── if_04a.test ├── if_04b.test ├── if_04c.test ├── if_04d.test ├── if_04e.test ├── if_04f.test ├── if_04g.test ├── if_04h.test ├── if_04i.test ├── if_04j.test ├── if_04k.test └── if_04l.test ├── lib ├── _date.test ├── _init.test ├── _pi.test ├── _show.test └── _vtedit.test ├── loop ├── loop_01.test ├── loop_02.test ├── loop_03.test ├── loop_04.test ├── loop_05.test ├── loop_06.test ├── loop_07.test ├── loop_08.test ├── loop_09.test └── loop_10.test ├── pct ├── pct_01.test └── pct_02.test ├── space ├── space_01.test └── space_02.test ├── star └── star.test ├── string ├── string_01.test └── string_02.test ├── tag ├── tag_01.test ├── tag_02.test ├── tag_03.test ├── tag_04a.test └── tag_04b.test ├── text ├── text_01a.test ├── text_01b.test ├── text_01c.test ├── text_02a.test ├── text_02b.test ├── text_02c.test ├── text_03a.test ├── text_03b.test └── text_03c.test ├── trace ├── trace_01.test └── trace_02.test ├── ubar ├── ubar_01.test ├── ubar_02.test ├── ubar_03.test └── ubar_04.test └── up ├── up_01.test ├── up_02.test └── up_03.test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/README.md -------------------------------------------------------------------------------- /doc/TECO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/TECO.md -------------------------------------------------------------------------------- /doc/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/action.md -------------------------------------------------------------------------------- /doc/atsign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/atsign.md -------------------------------------------------------------------------------- /doc/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/basics.md -------------------------------------------------------------------------------- /doc/colon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/colon.md -------------------------------------------------------------------------------- /doc/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/conventions.md -------------------------------------------------------------------------------- /doc/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/delete.md -------------------------------------------------------------------------------- /doc/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/display.md -------------------------------------------------------------------------------- /doc/dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/dot.md -------------------------------------------------------------------------------- /doc/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/env.md -------------------------------------------------------------------------------- /doc/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/errors.md -------------------------------------------------------------------------------- /doc/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/file.md -------------------------------------------------------------------------------- /doc/flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/flags.md -------------------------------------------------------------------------------- /doc/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/glossary.md -------------------------------------------------------------------------------- /doc/goto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/goto.md -------------------------------------------------------------------------------- /doc/ifthen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/ifthen.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/insert.md -------------------------------------------------------------------------------- /doc/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/internals.md -------------------------------------------------------------------------------- /doc/keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/keymap.md -------------------------------------------------------------------------------- /doc/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/linux.md -------------------------------------------------------------------------------- /doc/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/loops.md -------------------------------------------------------------------------------- /doc/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/macos.md -------------------------------------------------------------------------------- /doc/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/messages.md -------------------------------------------------------------------------------- /doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/misc.md -------------------------------------------------------------------------------- /doc/missing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/missing.md -------------------------------------------------------------------------------- /doc/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/new.md -------------------------------------------------------------------------------- /doc/novice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/novice.md -------------------------------------------------------------------------------- /doc/openvms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/openvms.md -------------------------------------------------------------------------------- /doc/oper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/oper.md -------------------------------------------------------------------------------- /doc/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/page.md -------------------------------------------------------------------------------- /doc/qregister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/qregister.md -------------------------------------------------------------------------------- /doc/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/release.md -------------------------------------------------------------------------------- /doc/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/search.md -------------------------------------------------------------------------------- /doc/typeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/typeout.md -------------------------------------------------------------------------------- /doc/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/variables.md -------------------------------------------------------------------------------- /doc/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/doc/windows.md -------------------------------------------------------------------------------- /etc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/Doxyfile -------------------------------------------------------------------------------- /etc/Teco.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/Teco.pm -------------------------------------------------------------------------------- /etc/build/doc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/build/doc.mk -------------------------------------------------------------------------------- /etc/build/init.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/build/init.mk -------------------------------------------------------------------------------- /etc/build/lint.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/build/lint.mk -------------------------------------------------------------------------------- /etc/build/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/build/test.mk -------------------------------------------------------------------------------- /etc/make_commands.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/make_commands.pl -------------------------------------------------------------------------------- /etc/make_errors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/make_errors.pl -------------------------------------------------------------------------------- /etc/make_options.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/make_options.pl -------------------------------------------------------------------------------- /etc/make_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/make_version.pl -------------------------------------------------------------------------------- /etc/pattern/_cmd_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/_cmd_exec.c -------------------------------------------------------------------------------- /etc/pattern/_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/_errors.c -------------------------------------------------------------------------------- /etc/pattern/_option_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/_option_sys.c -------------------------------------------------------------------------------- /etc/pattern/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/errors.h -------------------------------------------------------------------------------- /etc/pattern/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/errors.md -------------------------------------------------------------------------------- /etc/pattern/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/exec.h -------------------------------------------------------------------------------- /etc/pattern/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/pattern/version.h -------------------------------------------------------------------------------- /etc/std.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/std.lnt -------------------------------------------------------------------------------- /etc/test_commands.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/test_commands.pl -------------------------------------------------------------------------------- /etc/test_errors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/test_errors.pl -------------------------------------------------------------------------------- /etc/test_options.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/test_options.pl -------------------------------------------------------------------------------- /etc/xml/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/xml/commands.xml -------------------------------------------------------------------------------- /etc/xml/errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/xml/errors.xml -------------------------------------------------------------------------------- /etc/xml/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/xml/options.xml -------------------------------------------------------------------------------- /etc/xml/options.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/etc/xml/options.xsl -------------------------------------------------------------------------------- /include/_cmd_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/_cmd_exec.c -------------------------------------------------------------------------------- /include/_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/_errors.c -------------------------------------------------------------------------------- /include/_option_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/_option_sys.c -------------------------------------------------------------------------------- /include/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/ascii.h -------------------------------------------------------------------------------- /include/cmdbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/cmdbuf.h -------------------------------------------------------------------------------- /include/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/display.h -------------------------------------------------------------------------------- /include/editbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/editbuf.h -------------------------------------------------------------------------------- /include/eflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/eflags.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/estack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/estack.h -------------------------------------------------------------------------------- /include/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/exec.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/file.h -------------------------------------------------------------------------------- /include/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/keys.h -------------------------------------------------------------------------------- /include/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/page.h -------------------------------------------------------------------------------- /include/qreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/qreg.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/search.h -------------------------------------------------------------------------------- /include/teco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/teco.h -------------------------------------------------------------------------------- /include/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/term.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/include/version.h -------------------------------------------------------------------------------- /lib/date.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/date.tec -------------------------------------------------------------------------------- /lib/init.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/init.tec -------------------------------------------------------------------------------- /lib/pi.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/pi.tec -------------------------------------------------------------------------------- /lib/show.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/show.tec -------------------------------------------------------------------------------- /lib/squish.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/squish.tec -------------------------------------------------------------------------------- /lib/vtedit.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/lib/vtedit.tec -------------------------------------------------------------------------------- /src/a_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/a_cmd.c -------------------------------------------------------------------------------- /src/bracket_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/bracket_cmd.c -------------------------------------------------------------------------------- /src/build_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/build_str.c -------------------------------------------------------------------------------- /src/case_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/case_cmd.c -------------------------------------------------------------------------------- /src/cmd_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/cmd_buf.c -------------------------------------------------------------------------------- /src/cmd_estack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/cmd_estack.c -------------------------------------------------------------------------------- /src/cmd_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/cmd_exec.c -------------------------------------------------------------------------------- /src/cmd_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/cmd_scan.c -------------------------------------------------------------------------------- /src/color_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/color_cmd.c -------------------------------------------------------------------------------- /src/ctrl_a_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ctrl_a_cmd.c -------------------------------------------------------------------------------- /src/ctrl_t_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ctrl_t_cmd.c -------------------------------------------------------------------------------- /src/ctrl_u_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ctrl_u_cmd.c -------------------------------------------------------------------------------- /src/ctrl_v_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ctrl_v_cmd.c -------------------------------------------------------------------------------- /src/ctrl_w_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ctrl_w_cmd.c -------------------------------------------------------------------------------- /src/datetime_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/datetime_cmd.c -------------------------------------------------------------------------------- /src/delete_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/delete_cmd.c -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/display.c -------------------------------------------------------------------------------- /src/e_pct_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/e_pct_cmd.c -------------------------------------------------------------------------------- /src/e_ubar_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/e_ubar_cmd.c -------------------------------------------------------------------------------- /src/ea_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ea_cmd.c -------------------------------------------------------------------------------- /src/eb_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/eb_cmd.c -------------------------------------------------------------------------------- /src/ec_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ec_cmd.c -------------------------------------------------------------------------------- /src/ef_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ef_cmd.c -------------------------------------------------------------------------------- /src/eg_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/eg_cmd.c -------------------------------------------------------------------------------- /src/ei_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ei_cmd.c -------------------------------------------------------------------------------- /src/ek_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ek_cmd.c -------------------------------------------------------------------------------- /src/el_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/el_cmd.c -------------------------------------------------------------------------------- /src/em_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/em_cmd.c -------------------------------------------------------------------------------- /src/en_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/en_cmd.c -------------------------------------------------------------------------------- /src/env_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/env_sys.c -------------------------------------------------------------------------------- /src/eo_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/eo_cmd.c -------------------------------------------------------------------------------- /src/ep_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ep_cmd.c -------------------------------------------------------------------------------- /src/eq_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/eq_cmd.c -------------------------------------------------------------------------------- /src/equals_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/equals_cmd.c -------------------------------------------------------------------------------- /src/er_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/er_cmd.c -------------------------------------------------------------------------------- /src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/errors.c -------------------------------------------------------------------------------- /src/esc_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/esc_cmd.c -------------------------------------------------------------------------------- /src/ew_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ew_cmd.c -------------------------------------------------------------------------------- /src/ex_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ex_cmd.c -------------------------------------------------------------------------------- /src/ez_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ez_cmd.c -------------------------------------------------------------------------------- /src/fb_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/fb_cmd.c -------------------------------------------------------------------------------- /src/fd_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/fd_cmd.c -------------------------------------------------------------------------------- /src/ff_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ff_cmd.c -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/file.c -------------------------------------------------------------------------------- /src/file_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/file_sys.c -------------------------------------------------------------------------------- /src/fk_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/fk_cmd.c -------------------------------------------------------------------------------- /src/flag_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/flag_cmd.c -------------------------------------------------------------------------------- /src/fr_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/fr_cmd.c -------------------------------------------------------------------------------- /src/g_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/g_cmd.c -------------------------------------------------------------------------------- /src/gap_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/gap_buf.c -------------------------------------------------------------------------------- /src/goto_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/goto_cmd.c -------------------------------------------------------------------------------- /src/if_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/if_cmd.c -------------------------------------------------------------------------------- /src/insert_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/insert_cmd.c -------------------------------------------------------------------------------- /src/key_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/key_cmd.c -------------------------------------------------------------------------------- /src/loop_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/loop_cmd.c -------------------------------------------------------------------------------- /src/m_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/m_cmd.c -------------------------------------------------------------------------------- /src/map_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/map_cmd.c -------------------------------------------------------------------------------- /src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/memory.c -------------------------------------------------------------------------------- /src/move_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/move_cmd.c -------------------------------------------------------------------------------- /src/n_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/n_cmd.c -------------------------------------------------------------------------------- /src/number_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/number_cmd.c -------------------------------------------------------------------------------- /src/oper_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/oper_cmd.c -------------------------------------------------------------------------------- /src/option_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/option_sys.c -------------------------------------------------------------------------------- /src/p_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/p_cmd.c -------------------------------------------------------------------------------- /src/page_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/page_file.c -------------------------------------------------------------------------------- /src/page_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/page_std.c -------------------------------------------------------------------------------- /src/page_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/page_vm.c -------------------------------------------------------------------------------- /src/pct_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/pct_cmd.c -------------------------------------------------------------------------------- /src/q_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/q_cmd.c -------------------------------------------------------------------------------- /src/qreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/qreg.c -------------------------------------------------------------------------------- /src/radix_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/radix_cmd.c -------------------------------------------------------------------------------- /src/s_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/s_cmd.c -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/search.c -------------------------------------------------------------------------------- /src/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/status.c -------------------------------------------------------------------------------- /src/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/stubs.c -------------------------------------------------------------------------------- /src/teco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/teco.c -------------------------------------------------------------------------------- /src/term_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/term_buf.c -------------------------------------------------------------------------------- /src/term_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/term_in.c -------------------------------------------------------------------------------- /src/term_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/term_out.c -------------------------------------------------------------------------------- /src/term_rubout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/term_rubout.c -------------------------------------------------------------------------------- /src/term_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/term_sys.c -------------------------------------------------------------------------------- /src/trace_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/trace_cmd.c -------------------------------------------------------------------------------- /src/type_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/type_cmd.c -------------------------------------------------------------------------------- /src/u_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/u_cmd.c -------------------------------------------------------------------------------- /src/ubar_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/ubar_cmd.c -------------------------------------------------------------------------------- /src/var_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/var_cmd.c -------------------------------------------------------------------------------- /src/w_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/w_cmd.c -------------------------------------------------------------------------------- /src/x_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/x_cmd.c -------------------------------------------------------------------------------- /src/yank_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/src/yank_cmd.c -------------------------------------------------------------------------------- /test/benchmarks/A_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/A_01.lis -------------------------------------------------------------------------------- /test/benchmarks/A_02a.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/A_02a.lis -------------------------------------------------------------------------------- /test/benchmarks/A_02b.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/A_02b.lis -------------------------------------------------------------------------------- /test/benchmarks/A_02c.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/A_02c.lis -------------------------------------------------------------------------------- /test/benchmarks/A_02d.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/A_02d.lis -------------------------------------------------------------------------------- /test/benchmarks/BS.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/BS.lis -------------------------------------------------------------------------------- /test/benchmarks/DEL.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/DEL.lis -------------------------------------------------------------------------------- /test/benchmarks/EA_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EA_01.lis -------------------------------------------------------------------------------- /test/benchmarks/EC_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EC_01.lis -------------------------------------------------------------------------------- /test/benchmarks/EE_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EE_01.lis -------------------------------------------------------------------------------- /test/benchmarks/EG_01.lis: -------------------------------------------------------------------------------- 1 | hello, world! 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EG_02.lis: -------------------------------------------------------------------------------- 1 | TECO_INIT 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EG_03.lis: -------------------------------------------------------------------------------- 1 | TECO_LIBRARY 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EG_04.lis: -------------------------------------------------------------------------------- 1 | TECO_MEMORY 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EG_05.lis: -------------------------------------------------------------------------------- 1 | TECO_VTEDIT 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EH_01.lis: -------------------------------------------------------------------------------- 1 | 10 2 | 0 3 | ?POP Attempt to move pointer off page with 'C' 4 | -------------------------------------------------------------------------------- /test/benchmarks/EH_02.lis: -------------------------------------------------------------------------------- 1 | 1 2 | ?POP 3 | -------------------------------------------------------------------------------- /test/benchmarks/EH_03.lis: -------------------------------------------------------------------------------- 1 | 2 2 | ?POP Attempt to move pointer off page with 'C' 3 | -------------------------------------------------------------------------------- /test/benchmarks/EH_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EH_04.lis -------------------------------------------------------------------------------- /test/benchmarks/EH_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EH_05.lis -------------------------------------------------------------------------------- /test/benchmarks/EH_06.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EH_06.lis -------------------------------------------------------------------------------- /test/benchmarks/EI_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EI_04.lis -------------------------------------------------------------------------------- /test/benchmarks/EL_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EL_04.lis -------------------------------------------------------------------------------- /test/benchmarks/EL_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EL_05.lis -------------------------------------------------------------------------------- /test/benchmarks/EL_06.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EL_06.lis -------------------------------------------------------------------------------- /test/benchmarks/EL_07.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EL_07.lis -------------------------------------------------------------------------------- /test/benchmarks/EL_08.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EL_08.lis -------------------------------------------------------------------------------- /test/benchmarks/EM_01a.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EM_01a.lis -------------------------------------------------------------------------------- /test/benchmarks/EM_01b.lis: -------------------------------------------------------------------------------- 1 | 1+2=!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/EM_01c.lis: -------------------------------------------------------------------------------- 1 | 1 + 2 =!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/EM_01d.lis: -------------------------------------------------------------------------------- 1 | !PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/EM_01e.lis: -------------------------------------------------------------------------------- 1 | 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/EM_01f.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/EM_01f.lis -------------------------------------------------------------------------------- /test/benchmarks/EM_01g.lis: -------------------------------------------------------------------------------- 1 | 1+2=3+4=!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/EP_01.lis: -------------------------------------------------------------------------------- 1 | abcdef 2 | 123456 3 | !PASS! 4 | -------------------------------------------------------------------------------- /test/benchmarks/E_ubar_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/E_ubar_01.lis -------------------------------------------------------------------------------- /test/benchmarks/E_ubar_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/E_ubar_02.lis -------------------------------------------------------------------------------- /test/benchmarks/FC_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FC_01.lis -------------------------------------------------------------------------------- /test/benchmarks/FD_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FD_01.lis -------------------------------------------------------------------------------- /test/benchmarks/FK_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FK_01.lis -------------------------------------------------------------------------------- /test/benchmarks/FK_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FK_02.lis -------------------------------------------------------------------------------- /test/benchmarks/FM_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FM_02.lis -------------------------------------------------------------------------------- /test/benchmarks/FN_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FN_01.lis -------------------------------------------------------------------------------- /test/benchmarks/FN_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FN_02.lis -------------------------------------------------------------------------------- /test/benchmarks/FN_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FN_03.lis -------------------------------------------------------------------------------- /test/benchmarks/FN_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FN_04.lis -------------------------------------------------------------------------------- /test/benchmarks/FS_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/FS_04.lis -------------------------------------------------------------------------------- /test/benchmarks/F_ubar_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/F_ubar_01.lis -------------------------------------------------------------------------------- /test/benchmarks/F_ubar_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/F_ubar_02.lis -------------------------------------------------------------------------------- /test/benchmarks/G_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/G_01.lis -------------------------------------------------------------------------------- /test/benchmarks/G_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/G_02.lis -------------------------------------------------------------------------------- /test/benchmarks/G_03a.lis: -------------------------------------------------------------------------------- 1 | G* = slithy.toves 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/G_03b.lis: -------------------------------------------------------------------------------- 1 | :G* = slithy.toves 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/G_04a.lis: -------------------------------------------------------------------------------- 1 | G_ = frumious bandersnatch 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/G_04b.lis: -------------------------------------------------------------------------------- 1 | :G_ = frumious bandersnatch 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/K_01a.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/K_01a.lis -------------------------------------------------------------------------------- /test/benchmarks/LF_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/LF_01.lis -------------------------------------------------------------------------------- /test/benchmarks/L_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/L_01.lis -------------------------------------------------------------------------------- /test/benchmarks/PI.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/PI.lis -------------------------------------------------------------------------------- /test/benchmarks/P_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_01.lis -------------------------------------------------------------------------------- /test/benchmarks/P_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_02.lis -------------------------------------------------------------------------------- /test/benchmarks/P_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_03.lis -------------------------------------------------------------------------------- /test/benchmarks/P_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_04.lis -------------------------------------------------------------------------------- /test/benchmarks/P_09.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_09.lis -------------------------------------------------------------------------------- /test/benchmarks/P_10.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/P_10.lis -------------------------------------------------------------------------------- /test/benchmarks/Q_01.lis: -------------------------------------------------------------------------------- 1 | QA=123456 2 | :QA=44 3 | the quick brown fox jumped over the lazy dog 4 | !PASS! 5 | -------------------------------------------------------------------------------- /test/benchmarks/S_04.lis: -------------------------------------------------------------------------------- 1 | 10 2 | 56 3 | 102 4 | !PASS! 5 | -------------------------------------------------------------------------------- /test/benchmarks/S_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/S_05.lis -------------------------------------------------------------------------------- /test/benchmarks/T_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/T_01.lis -------------------------------------------------------------------------------- /test/benchmarks/T_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/T_02.lis -------------------------------------------------------------------------------- /test/benchmarks/U_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/U_01.lis -------------------------------------------------------------------------------- /test/benchmarks/V_01.lis: -------------------------------------------------------------------------------- 1 | The Jabberwock, with eyes of flame, 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/V_02.lis: -------------------------------------------------------------------------------- 1 | The Jabberwock, with eyes of flame, 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/V_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/V_03.lis -------------------------------------------------------------------------------- /test/benchmarks/X_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/X_01.lis -------------------------------------------------------------------------------- /test/benchmarks/X_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/X_02.lis -------------------------------------------------------------------------------- /test/benchmarks/_A_01a.lis: -------------------------------------------------------------------------------- 1 | hello, world!!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/_A_01b.lis: -------------------------------------------------------------------------------- 1 | hello, world!!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/_A_01c.lis: -------------------------------------------------------------------------------- 1 | hello, world!!PASS! 2 | -------------------------------------------------------------------------------- /test/benchmarks/_A_02.lis: -------------------------------------------------------------------------------- 1 | hello, world! 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_A_03.lis: -------------------------------------------------------------------------------- 1 | goodbye, cruel world! 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_C.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_C.lis -------------------------------------------------------------------------------- /test/benchmarks/_C_C.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_C_C.lis -------------------------------------------------------------------------------- /test/benchmarks/_D_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_D_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_EA_01.lis: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_EB_01.lis: -------------------------------------------------------------------------------- 1 | 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_EC_01.lis: -------------------------------------------------------------------------------- 1 | $.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_ED_01.lis: -------------------------------------------------------------------------------- 1 | 0123456789 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_EG_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_EG_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_EL_01.lis: -------------------------------------------------------------------------------- 1 | 10 11 12 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_ER_01.lis: -------------------------------------------------------------------------------- 1 | 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_ES_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_ES_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_EV_01.lis: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_EW_01.lis: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKLMNOPQRSTUVWXYZ 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_EX_01.lis: -------------------------------------------------------------------------------- 1 | 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_E_03.lis: -------------------------------------------------------------------------------- 1 | text 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_E_04.lis: -------------------------------------------------------------------------------- 1 | text 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_G_G.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_G_G.lis -------------------------------------------------------------------------------- /test/benchmarks/_G_space.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_G_space.lis -------------------------------------------------------------------------------- /test/benchmarks/_G_star.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_G_star.lis -------------------------------------------------------------------------------- /test/benchmarks/_N_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_N_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_N_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_N_02.lis -------------------------------------------------------------------------------- /test/benchmarks/_O_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_O_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_S_01.lis: -------------------------------------------------------------------------------- 1 | 2 | 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz 3 | !PASS! 4 | -------------------------------------------------------------------------------- /test/benchmarks/_T_01.lis: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_T_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_T_02.lis -------------------------------------------------------------------------------- /test/benchmarks/_T_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_T_03.lis -------------------------------------------------------------------------------- /test/benchmarks/_T_04.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_T_04.lis -------------------------------------------------------------------------------- /test/benchmarks/_T_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_T_05.lis -------------------------------------------------------------------------------- /test/benchmarks/_U.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_U.lis -------------------------------------------------------------------------------- /test/benchmarks/_U_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_U_01.lis -------------------------------------------------------------------------------- /test/benchmarks/_U_02.lis: -------------------------------------------------------------------------------- 1 | hello, world! 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_U_03.lis: -------------------------------------------------------------------------------- 1 | o 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_U_04.lis: -------------------------------------------------------------------------------- 1 | hello 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_X_01.lis: -------------------------------------------------------------------------------- 1 | 2 | !PASS! 3 | -------------------------------------------------------------------------------- /test/benchmarks/_Z_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/_Z_01.lis -------------------------------------------------------------------------------- /test/benchmarks/basic_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/basic_01.lis -------------------------------------------------------------------------------- /test/benchmarks/basic_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/basic_02.lis -------------------------------------------------------------------------------- /test/benchmarks/bslash_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/bslash_01.lis -------------------------------------------------------------------------------- /test/benchmarks/digits_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/digits_01.lis -------------------------------------------------------------------------------- /test/benchmarks/digits_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/digits_03.lis -------------------------------------------------------------------------------- /test/benchmarks/equals_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/equals_01.lis -------------------------------------------------------------------------------- /test/benchmarks/equals_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/equals_02.lis -------------------------------------------------------------------------------- /test/benchmarks/equals_03.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/equals_03.lis -------------------------------------------------------------------------------- /test/benchmarks/expr_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/expr_05.lis -------------------------------------------------------------------------------- /test/benchmarks/loop_05.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/loop_05.lis -------------------------------------------------------------------------------- /test/benchmarks/loop_06.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/loop_06.lis -------------------------------------------------------------------------------- /test/benchmarks/star.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/star.lis -------------------------------------------------------------------------------- /test/benchmarks/ubar_01.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/ubar_01.lis -------------------------------------------------------------------------------- /test/benchmarks/ubar_02.lis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/benchmarks/ubar_02.lis -------------------------------------------------------------------------------- /test/scripts/A/A_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/A/A_01.test -------------------------------------------------------------------------------- /test/scripts/A/A_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/A/A_02a.test -------------------------------------------------------------------------------- /test/scripts/A/A_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/A/A_02b.test -------------------------------------------------------------------------------- /test/scripts/A/A_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/A/A_02c.test -------------------------------------------------------------------------------- /test/scripts/A/A_02d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/A/A_02d.test -------------------------------------------------------------------------------- /test/scripts/B/B_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/B/B_01.test -------------------------------------------------------------------------------- /test/scripts/BS/BS.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/BS/BS.test -------------------------------------------------------------------------------- /test/scripts/C/C_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/C/C_01a.test -------------------------------------------------------------------------------- /test/scripts/C/C_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/C/C_01b.test -------------------------------------------------------------------------------- /test/scripts/C/C_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/C/C_01c.test -------------------------------------------------------------------------------- /test/scripts/C/C_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/C/C_02.test -------------------------------------------------------------------------------- /test/scripts/CR/CR_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/CR/CR_01.test -------------------------------------------------------------------------------- /test/scripts/CR/CR_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/CR/CR_02.test -------------------------------------------------------------------------------- /test/scripts/D/D_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01a.test -------------------------------------------------------------------------------- /test/scripts/D/D_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01b.test -------------------------------------------------------------------------------- /test/scripts/D/D_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01c.test -------------------------------------------------------------------------------- /test/scripts/D/D_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01d.test -------------------------------------------------------------------------------- /test/scripts/D/D_01e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01e.test -------------------------------------------------------------------------------- /test/scripts/D/D_01f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01f.test -------------------------------------------------------------------------------- /test/scripts/D/D_01g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_01g.test -------------------------------------------------------------------------------- /test/scripts/D/D_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_02a.test -------------------------------------------------------------------------------- /test/scripts/D/D_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/D/D_02b.test -------------------------------------------------------------------------------- /test/scripts/DEL/DEL.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/DEL/DEL.test -------------------------------------------------------------------------------- /test/scripts/E1/E1_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E1/E1_01.test -------------------------------------------------------------------------------- /test/scripts/E2/E2_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E2/E2_01.test -------------------------------------------------------------------------------- /test/scripts/E3/E3_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E3/E3_01.test -------------------------------------------------------------------------------- /test/scripts/E4/E4_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E4/E4_01.test -------------------------------------------------------------------------------- /test/scripts/EA/EA_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EA/EA_01.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_01a.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_01b.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_01c.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_02a.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_02b.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_03a.test -------------------------------------------------------------------------------- /test/scripts/EB/EB_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EB/EB_03b.test -------------------------------------------------------------------------------- /test/scripts/EC/EC_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EC/EC_01.test -------------------------------------------------------------------------------- /test/scripts/EC/EC_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EC/EC_02a.test -------------------------------------------------------------------------------- /test/scripts/EC/EC_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EC/EC_02b.test -------------------------------------------------------------------------------- /test/scripts/EC/EC_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EC/EC_02c.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_01.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_02a.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_02b.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_02c.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_02d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_02d.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_03.test -------------------------------------------------------------------------------- /test/scripts/ED/ED_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ED/ED_04.test -------------------------------------------------------------------------------- /test/scripts/EE/EE_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EE/EE_01.test -------------------------------------------------------------------------------- /test/scripts/EF/EF_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EF/EF_01.test -------------------------------------------------------------------------------- /test/scripts/EF/EF_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EF/EF_02.test -------------------------------------------------------------------------------- /test/scripts/EG/EG_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EG/EG_01.test -------------------------------------------------------------------------------- /test/scripts/EG/EG_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EG/EG_02.test -------------------------------------------------------------------------------- /test/scripts/EG/EG_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EG/EG_03.test -------------------------------------------------------------------------------- /test/scripts/EG/EG_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EG/EG_04.test -------------------------------------------------------------------------------- /test/scripts/EG/EG_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EG/EG_05.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_01.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_02.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_03.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_04.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_05.test -------------------------------------------------------------------------------- /test/scripts/EH/EH_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EH/EH_06.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_01a.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_01b.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_02a.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_02b.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_03a.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_03b.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_04.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_04a.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_04a.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_04b.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_04b.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_04c.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_04c.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_05.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_05a.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_05a.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_06.test -------------------------------------------------------------------------------- /test/scripts/EI/EI_06a.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_06a.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_06b.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_06b.tec -------------------------------------------------------------------------------- /test/scripts/EI/EI_06c.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EI/EI_06c.tec -------------------------------------------------------------------------------- /test/scripts/EJ/EJ_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EJ/EJ_01a.test -------------------------------------------------------------------------------- /test/scripts/EJ/EJ_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EJ/EJ_01b.test -------------------------------------------------------------------------------- /test/scripts/EJ/EJ_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EJ/EJ_02.test -------------------------------------------------------------------------------- /test/scripts/EK/EK_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EK/EK_01.test -------------------------------------------------------------------------------- /test/scripts/EK/EK_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EK/EK_02.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_01a.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_01b.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_02a.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_02b.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_03a.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_03b.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_04.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_05.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_06.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_07.test -------------------------------------------------------------------------------- /test/scripts/EL/EL_08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EL/EL_08.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01a.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01b.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01c.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01d.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01e.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01f.test -------------------------------------------------------------------------------- /test/scripts/EM/EM_01g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EM/EM_01g.test -------------------------------------------------------------------------------- /test/scripts/EN/EN_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EN/EN_01.test -------------------------------------------------------------------------------- /test/scripts/EN/EN_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EN/EN_02.test -------------------------------------------------------------------------------- /test/scripts/EN/EN_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EN/EN_03.test -------------------------------------------------------------------------------- /test/scripts/EO/EO_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EO/EO_01.test -------------------------------------------------------------------------------- /test/scripts/EO/EO_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EO/EO_02.test -------------------------------------------------------------------------------- /test/scripts/EO/EO_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EO/EO_03.test -------------------------------------------------------------------------------- /test/scripts/EP/EP_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EP/EP_01.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_01a.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_01b.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_02a.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_02b.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_03a.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_03b.test -------------------------------------------------------------------------------- /test/scripts/EQ/EQ_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EQ/EQ_04.test -------------------------------------------------------------------------------- /test/scripts/EQ/hello: -------------------------------------------------------------------------------- 1 | hello, world! 2 | -------------------------------------------------------------------------------- /test/scripts/ER/ER_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_01a.test -------------------------------------------------------------------------------- /test/scripts/ER/ER_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_01b.test -------------------------------------------------------------------------------- /test/scripts/ER/ER_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_02a.test -------------------------------------------------------------------------------- /test/scripts/ER/ER_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_02b.test -------------------------------------------------------------------------------- /test/scripts/ER/ER_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_03a.test -------------------------------------------------------------------------------- /test/scripts/ER/ER_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ER/ER_03b.test -------------------------------------------------------------------------------- /test/scripts/ESC/ESC_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ESC/ESC_01.test -------------------------------------------------------------------------------- /test/scripts/ESC/ESC_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ESC/ESC_02a.test -------------------------------------------------------------------------------- /test/scripts/ESC/ESC_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ESC/ESC_02b.test -------------------------------------------------------------------------------- /test/scripts/ET/ET_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ET/ET_01.test -------------------------------------------------------------------------------- /test/scripts/EU/EU_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EU/EU_01.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_01a.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_01b.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_02a.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_02b.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_03a.test -------------------------------------------------------------------------------- /test/scripts/EW/EW_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EW/EW_03b.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_01a.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_01b.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_02a.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_02b.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_03a.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_03b.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_04a.test -------------------------------------------------------------------------------- /test/scripts/EX/EX_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EX/EX_04b.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_01a.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_01b.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_02a.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_02b.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_03a.test -------------------------------------------------------------------------------- /test/scripts/EY/EY_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EY/EY_03b.test -------------------------------------------------------------------------------- /test/scripts/EZ/EZ_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EZ/EZ_01.test -------------------------------------------------------------------------------- /test/scripts/EZ/EZ_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EZ/EZ_02.test -------------------------------------------------------------------------------- /test/scripts/EZ/EZ_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/EZ/EZ_03.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_01a.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_01b.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_02a.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_02b.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_03a.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_03b.test -------------------------------------------------------------------------------- /test/scripts/E_pct/E_pct_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_pct/E_pct_04.test -------------------------------------------------------------------------------- /test/scripts/E_pct/hello: -------------------------------------------------------------------------------- 1 | hello, world! 2 | -------------------------------------------------------------------------------- /test/scripts/E_ubar/E_ubar_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_ubar/E_ubar_01.test -------------------------------------------------------------------------------- /test/scripts/E_ubar/E_ubar_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_ubar/E_ubar_02.test -------------------------------------------------------------------------------- /test/scripts/E_ubar/E_ubar_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/E_ubar/E_ubar_03.test -------------------------------------------------------------------------------- /test/scripts/F1/F1_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F1/F1_01.test -------------------------------------------------------------------------------- /test/scripts/F1/F1_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F1/F1_02.test -------------------------------------------------------------------------------- /test/scripts/F2/F2_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F2/F2_01.test -------------------------------------------------------------------------------- /test/scripts/F2/F2_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F2/F2_02.test -------------------------------------------------------------------------------- /test/scripts/F3/F3_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F3/F3_01.test -------------------------------------------------------------------------------- /test/scripts/F3/F3_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F3/F3_02.test -------------------------------------------------------------------------------- /test/scripts/FB/FB_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FB/FB_01.test -------------------------------------------------------------------------------- /test/scripts/FC/FC_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FC/FC_01.test -------------------------------------------------------------------------------- /test/scripts/FD/FD_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FD/FD_01.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_01a.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_01b.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_01c.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_01d.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_02.test -------------------------------------------------------------------------------- /test/scripts/FF/FF_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FF/FF_03.test -------------------------------------------------------------------------------- /test/scripts/FK/FK_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FK/FK_01.test -------------------------------------------------------------------------------- /test/scripts/FK/FK_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FK/FK_02.test -------------------------------------------------------------------------------- /test/scripts/FL/FL_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FL/FL_01a.test -------------------------------------------------------------------------------- /test/scripts/FL/FL_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FL/FL_01b.test -------------------------------------------------------------------------------- /test/scripts/FL/FL_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FL/FL_01c.test -------------------------------------------------------------------------------- /test/scripts/FM/FM_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FM/FM_01a.test -------------------------------------------------------------------------------- /test/scripts/FM/FM_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FM/FM_01b.test -------------------------------------------------------------------------------- /test/scripts/FM/FM_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FM/FM_01c.test -------------------------------------------------------------------------------- /test/scripts/FM/FM_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FM/FM_02.test -------------------------------------------------------------------------------- /test/scripts/FN/FN_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FN/FN_01.test -------------------------------------------------------------------------------- /test/scripts/FN/FN_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FN/FN_02.test -------------------------------------------------------------------------------- /test/scripts/FN/FN_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FN/FN_03.test -------------------------------------------------------------------------------- /test/scripts/FN/FN_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FN/FN_04.test -------------------------------------------------------------------------------- /test/scripts/FQ/FQ_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FQ/FQ_01a.test -------------------------------------------------------------------------------- /test/scripts/FQ/FQ_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FQ/FQ_01b.test -------------------------------------------------------------------------------- /test/scripts/FQ/FQ_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FQ/FQ_01c.test -------------------------------------------------------------------------------- /test/scripts/FR/FR_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FR/FR_01.test -------------------------------------------------------------------------------- /test/scripts/FR/FR_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FR/FR_02.test -------------------------------------------------------------------------------- /test/scripts/FR/FR_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FR/FR_03.test -------------------------------------------------------------------------------- /test/scripts/FR/FR_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FR/FR_04.test -------------------------------------------------------------------------------- /test/scripts/FR/FR_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FR/FR_05.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_01a.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_01b.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_02a.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_02b.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_03a.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_03b.test -------------------------------------------------------------------------------- /test/scripts/FS/FS_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FS/FS_04.test -------------------------------------------------------------------------------- /test/scripts/FU/FU_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FU/FU_01a.test -------------------------------------------------------------------------------- /test/scripts/FU/FU_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FU/FU_01b.test -------------------------------------------------------------------------------- /test/scripts/FU/FU_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/FU/FU_01c.test -------------------------------------------------------------------------------- /test/scripts/F_ubar/F_ubar_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F_ubar/F_ubar_01.test -------------------------------------------------------------------------------- /test/scripts/F_ubar/F_ubar_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F_ubar/F_ubar_02.test -------------------------------------------------------------------------------- /test/scripts/F_ubar/F_ubar_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F_ubar/F_ubar_03.test -------------------------------------------------------------------------------- /test/scripts/F_ubar/F_ubar_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F_ubar/F_ubar_04.test -------------------------------------------------------------------------------- /test/scripts/F_ubar/F_ubar_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/F_ubar/F_ubar_05.test -------------------------------------------------------------------------------- /test/scripts/G/G_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_01.test -------------------------------------------------------------------------------- /test/scripts/G/G_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_02.test -------------------------------------------------------------------------------- /test/scripts/G/G_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_03a.test -------------------------------------------------------------------------------- /test/scripts/G/G_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_03b.test -------------------------------------------------------------------------------- /test/scripts/G/G_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_04a.test -------------------------------------------------------------------------------- /test/scripts/G/G_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_04b.test -------------------------------------------------------------------------------- /test/scripts/G/G_05a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_05a.test -------------------------------------------------------------------------------- /test/scripts/G/G_05b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_05b.test -------------------------------------------------------------------------------- /test/scripts/G/G_05c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_05c.test -------------------------------------------------------------------------------- /test/scripts/G/G_05d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_05d.test -------------------------------------------------------------------------------- /test/scripts/G/G_05e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/G/G_05e.test -------------------------------------------------------------------------------- /test/scripts/H/H_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/H/H_01.test -------------------------------------------------------------------------------- /test/scripts/I/I_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_01a.test -------------------------------------------------------------------------------- /test/scripts/I/I_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_01b.test -------------------------------------------------------------------------------- /test/scripts/I/I_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_01c.test -------------------------------------------------------------------------------- /test/scripts/I/I_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_02a.test -------------------------------------------------------------------------------- /test/scripts/I/I_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_02b.test -------------------------------------------------------------------------------- /test/scripts/I/I_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/I/I_02c.test -------------------------------------------------------------------------------- /test/scripts/J/J_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/J/J_01a.test -------------------------------------------------------------------------------- /test/scripts/J/J_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/J/J_01b.test -------------------------------------------------------------------------------- /test/scripts/J/J_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/J/J_01c.test -------------------------------------------------------------------------------- /test/scripts/J/J_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/J/J_02.test -------------------------------------------------------------------------------- /test/scripts/K/K_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/K/K_01a.test -------------------------------------------------------------------------------- /test/scripts/K/K_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/K/K_01b.test -------------------------------------------------------------------------------- /test/scripts/L/L_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/L/L_01.test -------------------------------------------------------------------------------- /test/scripts/L/L_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/L/L_02.test -------------------------------------------------------------------------------- /test/scripts/LF/LF_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/LF/LF_01.test -------------------------------------------------------------------------------- /test/scripts/LF/LF_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/LF/LF_02.test -------------------------------------------------------------------------------- /test/scripts/LF/LF_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/LF/LF_03.test -------------------------------------------------------------------------------- /test/scripts/M/M_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01a.test -------------------------------------------------------------------------------- /test/scripts/M/M_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01b.test -------------------------------------------------------------------------------- /test/scripts/M/M_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01c.test -------------------------------------------------------------------------------- /test/scripts/M/M_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01d.test -------------------------------------------------------------------------------- /test/scripts/M/M_01e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01e.test -------------------------------------------------------------------------------- /test/scripts/M/M_01f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01f.test -------------------------------------------------------------------------------- /test/scripts/M/M_01g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_01g.test -------------------------------------------------------------------------------- /test/scripts/M/M_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_02a.test -------------------------------------------------------------------------------- /test/scripts/M/M_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_02b.test -------------------------------------------------------------------------------- /test/scripts/M/M_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_03a.test -------------------------------------------------------------------------------- /test/scripts/M/M_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/M/M_03b.test -------------------------------------------------------------------------------- /test/scripts/N/N_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_01.test -------------------------------------------------------------------------------- /test/scripts/N/N_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_02.test -------------------------------------------------------------------------------- /test/scripts/N/N_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_03.test -------------------------------------------------------------------------------- /test/scripts/N/N_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_04.test -------------------------------------------------------------------------------- /test/scripts/N/N_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_05.test -------------------------------------------------------------------------------- /test/scripts/N/N_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_06.test -------------------------------------------------------------------------------- /test/scripts/N/N_07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/N/N_07.test -------------------------------------------------------------------------------- /test/scripts/NUL/NUL_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/NUL/NUL_01.test -------------------------------------------------------------------------------- /test/scripts/NUL/NUL_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/NUL/NUL_02.test -------------------------------------------------------------------------------- /test/scripts/NUL/NUL_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/NUL/NUL_03.test -------------------------------------------------------------------------------- /test/scripts/O/O_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_01a.test -------------------------------------------------------------------------------- /test/scripts/O/O_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_01b.test -------------------------------------------------------------------------------- /test/scripts/O/O_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_02a.test -------------------------------------------------------------------------------- /test/scripts/O/O_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_02b.test -------------------------------------------------------------------------------- /test/scripts/O/O_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_03a.test -------------------------------------------------------------------------------- /test/scripts/O/O_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_03b.test -------------------------------------------------------------------------------- /test/scripts/O/O_03c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_03c.test -------------------------------------------------------------------------------- /test/scripts/O/O_03d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_03d.test -------------------------------------------------------------------------------- /test/scripts/O/O_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_04a.test -------------------------------------------------------------------------------- /test/scripts/O/O_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_04b.test -------------------------------------------------------------------------------- /test/scripts/O/O_04c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_04c.test -------------------------------------------------------------------------------- /test/scripts/O/O_04d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_04d.test -------------------------------------------------------------------------------- /test/scripts/O/O_05a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_05a.test -------------------------------------------------------------------------------- /test/scripts/O/O_06a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06a.test -------------------------------------------------------------------------------- /test/scripts/O/O_06b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06b.test -------------------------------------------------------------------------------- /test/scripts/O/O_06c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06c.test -------------------------------------------------------------------------------- /test/scripts/O/O_06d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06d.test -------------------------------------------------------------------------------- /test/scripts/O/O_06e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06e.test -------------------------------------------------------------------------------- /test/scripts/O/O_06f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06f.test -------------------------------------------------------------------------------- /test/scripts/O/O_06g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06g.test -------------------------------------------------------------------------------- /test/scripts/O/O_06h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06h.test -------------------------------------------------------------------------------- /test/scripts/O/O_06i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_06i.test -------------------------------------------------------------------------------- /test/scripts/O/O_07a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07a.test -------------------------------------------------------------------------------- /test/scripts/O/O_07b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07b.test -------------------------------------------------------------------------------- /test/scripts/O/O_07c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07c.test -------------------------------------------------------------------------------- /test/scripts/O/O_07d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07d.test -------------------------------------------------------------------------------- /test/scripts/O/O_07e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07e.test -------------------------------------------------------------------------------- /test/scripts/O/O_07f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07f.test -------------------------------------------------------------------------------- /test/scripts/O/O_07g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07g.test -------------------------------------------------------------------------------- /test/scripts/O/O_07h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07h.test -------------------------------------------------------------------------------- /test/scripts/O/O_07i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_07i.test -------------------------------------------------------------------------------- /test/scripts/O/O_08a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08a.test -------------------------------------------------------------------------------- /test/scripts/O/O_08b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08b.test -------------------------------------------------------------------------------- /test/scripts/O/O_08c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08c.test -------------------------------------------------------------------------------- /test/scripts/O/O_08d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08d.test -------------------------------------------------------------------------------- /test/scripts/O/O_08e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08e.test -------------------------------------------------------------------------------- /test/scripts/O/O_08f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_08f.test -------------------------------------------------------------------------------- /test/scripts/O/O_09a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_09a.test -------------------------------------------------------------------------------- /test/scripts/O/O_09b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_09b.test -------------------------------------------------------------------------------- /test/scripts/O/O_09c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_09c.test -------------------------------------------------------------------------------- /test/scripts/O/O_09d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/O/O_09d.test -------------------------------------------------------------------------------- /test/scripts/P/P_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_01.test -------------------------------------------------------------------------------- /test/scripts/P/P_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_02.test -------------------------------------------------------------------------------- /test/scripts/P/P_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_03.test -------------------------------------------------------------------------------- /test/scripts/P/P_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_04.test -------------------------------------------------------------------------------- /test/scripts/P/P_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_05.test -------------------------------------------------------------------------------- /test/scripts/P/P_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_06.test -------------------------------------------------------------------------------- /test/scripts/P/P_07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_07.test -------------------------------------------------------------------------------- /test/scripts/P/P_08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_08.test -------------------------------------------------------------------------------- /test/scripts/P/P_09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_09.test -------------------------------------------------------------------------------- /test/scripts/P/P_10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/P/P_10.test -------------------------------------------------------------------------------- /test/scripts/Q/Q_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Q/Q_01.test -------------------------------------------------------------------------------- /test/scripts/R/R_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/R/R_01a.test -------------------------------------------------------------------------------- /test/scripts/R/R_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/R/R_01b.test -------------------------------------------------------------------------------- /test/scripts/R/R_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/R/R_01c.test -------------------------------------------------------------------------------- /test/scripts/R/R_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/R/R_02.test -------------------------------------------------------------------------------- /test/scripts/S/S_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_01a.test -------------------------------------------------------------------------------- /test/scripts/S/S_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_01b.test -------------------------------------------------------------------------------- /test/scripts/S/S_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_02a.test -------------------------------------------------------------------------------- /test/scripts/S/S_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_02b.test -------------------------------------------------------------------------------- /test/scripts/S/S_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_03a.test -------------------------------------------------------------------------------- /test/scripts/S/S_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_03b.test -------------------------------------------------------------------------------- /test/scripts/S/S_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_04.test -------------------------------------------------------------------------------- /test/scripts/S/S_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_05.test -------------------------------------------------------------------------------- /test/scripts/S/S_06a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_06a.test -------------------------------------------------------------------------------- /test/scripts/S/S_06b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_06b.test -------------------------------------------------------------------------------- /test/scripts/S/S_07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/S/S_07.test -------------------------------------------------------------------------------- /test/scripts/T/T_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/T/T_01.test -------------------------------------------------------------------------------- /test/scripts/T/T_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/T/T_02.test -------------------------------------------------------------------------------- /test/scripts/TAB/TAB_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/TAB/TAB_01.test -------------------------------------------------------------------------------- /test/scripts/U/U_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_01.test -------------------------------------------------------------------------------- /test/scripts/U/U_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_02a.test -------------------------------------------------------------------------------- /test/scripts/U/U_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_02b.test -------------------------------------------------------------------------------- /test/scripts/U/U_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_03a.test -------------------------------------------------------------------------------- /test/scripts/U/U_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_03b.test -------------------------------------------------------------------------------- /test/scripts/U/U_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_04a.test -------------------------------------------------------------------------------- /test/scripts/U/U_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_04b.test -------------------------------------------------------------------------------- /test/scripts/U/U_05a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_05a.test -------------------------------------------------------------------------------- /test/scripts/U/U_05b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_05b.test -------------------------------------------------------------------------------- /test/scripts/U/U_05c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_05c.test -------------------------------------------------------------------------------- /test/scripts/U/U_06a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_06a.test -------------------------------------------------------------------------------- /test/scripts/U/U_06b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_06b.test -------------------------------------------------------------------------------- /test/scripts/U/U_06c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_06c.test -------------------------------------------------------------------------------- /test/scripts/U/U_06d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_06d.test -------------------------------------------------------------------------------- /test/scripts/U/U_06e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/U/U_06e.test -------------------------------------------------------------------------------- /test/scripts/V/V_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/V/V_01.test -------------------------------------------------------------------------------- /test/scripts/V/V_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/V/V_02.test -------------------------------------------------------------------------------- /test/scripts/V/V_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/V/V_03.test -------------------------------------------------------------------------------- /test/scripts/VT/VT_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/VT/VT_01.test -------------------------------------------------------------------------------- /test/scripts/VT/VT_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/VT/VT_02.test -------------------------------------------------------------------------------- /test/scripts/W/W_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01a.test -------------------------------------------------------------------------------- /test/scripts/W/W_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01b.test -------------------------------------------------------------------------------- /test/scripts/W/W_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01c.test -------------------------------------------------------------------------------- /test/scripts/W/W_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01d.test -------------------------------------------------------------------------------- /test/scripts/W/W_01e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01e.test -------------------------------------------------------------------------------- /test/scripts/W/W_01f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01f.test -------------------------------------------------------------------------------- /test/scripts/W/W_01g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01g.test -------------------------------------------------------------------------------- /test/scripts/W/W_01h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01h.test -------------------------------------------------------------------------------- /test/scripts/W/W_01i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01i.test -------------------------------------------------------------------------------- /test/scripts/W/W_01j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01j.test -------------------------------------------------------------------------------- /test/scripts/W/W_01k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_01k.test -------------------------------------------------------------------------------- /test/scripts/W/W_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_02a.test -------------------------------------------------------------------------------- /test/scripts/W/W_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_02b.test -------------------------------------------------------------------------------- /test/scripts/W/W_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_02c.test -------------------------------------------------------------------------------- /test/scripts/W/W_02d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_02d.test -------------------------------------------------------------------------------- /test/scripts/W/W_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/W/W_03.test -------------------------------------------------------------------------------- /test/scripts/X/X_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/X/X_01.test -------------------------------------------------------------------------------- /test/scripts/X/X_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/X/X_02.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_01a.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_01b.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_02a.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_02b.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_02c.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_03a.test -------------------------------------------------------------------------------- /test/scripts/Y/Y_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Y/Y_03b.test -------------------------------------------------------------------------------- /test/scripts/Z/Z_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/Z/Z_01.test -------------------------------------------------------------------------------- /test/scripts/_A/_A_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_A/_A_01a.test -------------------------------------------------------------------------------- /test/scripts/_A/_A_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_A/_A_01b.test -------------------------------------------------------------------------------- /test/scripts/_A/_A_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_A/_A_01c.test -------------------------------------------------------------------------------- /test/scripts/_A/_A_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_A/_A_02.test -------------------------------------------------------------------------------- /test/scripts/_A/_A_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_A/_A_03.test -------------------------------------------------------------------------------- /test/scripts/_B/_B_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_B/_B_01.test -------------------------------------------------------------------------------- /test/scripts/_C/_C.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_C/_C.test -------------------------------------------------------------------------------- /test/scripts/_C/_C_C.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_C/_C_C.test -------------------------------------------------------------------------------- /test/scripts/_D/_D_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_D/_D_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EA_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EA_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EB_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EB_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EC_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EC_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_ED_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_ED_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EG_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EG_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EL_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EL_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_ER_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_ER_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_ES_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_ES_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EV_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EV_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EW_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EW_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_EX_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_EX_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_E_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_E_01.test -------------------------------------------------------------------------------- /test/scripts/_E/_E_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_E_02.test -------------------------------------------------------------------------------- /test/scripts/_E/_E_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_E_03.test -------------------------------------------------------------------------------- /test/scripts/_E/_E_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_E_04.test -------------------------------------------------------------------------------- /test/scripts/_E/_Enn_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_E/_Enn_01.test -------------------------------------------------------------------------------- /test/scripts/_F/_F_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_F/_F_01.test -------------------------------------------------------------------------------- /test/scripts/_G/_G_G.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_G/_G_G.test -------------------------------------------------------------------------------- /test/scripts/_G/_G_space.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_G/_G_space.test -------------------------------------------------------------------------------- /test/scripts/_G/_G_star.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_G/_G_star.test -------------------------------------------------------------------------------- /test/scripts/_H/_H_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_H/_H_01.test -------------------------------------------------------------------------------- /test/scripts/_N/_N_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_N/_N_01.test -------------------------------------------------------------------------------- /test/scripts/_N/_N_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_N/_N_02.test -------------------------------------------------------------------------------- /test/scripts/_O/_O_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_O/_O_01.test -------------------------------------------------------------------------------- /test/scripts/_P/_P_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_P/_P_01.test -------------------------------------------------------------------------------- /test/scripts/_Q/_Q_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_Q/_Q_01.test -------------------------------------------------------------------------------- /test/scripts/_R/_R_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_R/_R_01.test -------------------------------------------------------------------------------- /test/scripts/_R/_R_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_R/_R_02.test -------------------------------------------------------------------------------- /test/scripts/_R/_R_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_R/_R_03.test -------------------------------------------------------------------------------- /test/scripts/_S/_S_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_S/_S_01.test -------------------------------------------------------------------------------- /test/scripts/_S/_S_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_S/_S_02.test -------------------------------------------------------------------------------- /test/scripts/_T/_T_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_T/_T_01.test -------------------------------------------------------------------------------- /test/scripts/_T/_T_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_T/_T_02.test -------------------------------------------------------------------------------- /test/scripts/_T/_T_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_T/_T_03.test -------------------------------------------------------------------------------- /test/scripts/_T/_T_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_T/_T_04.test -------------------------------------------------------------------------------- /test/scripts/_T/_T_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_T/_T_05.test -------------------------------------------------------------------------------- /test/scripts/_U/_U.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_01.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_02.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_03.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_04.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_05.test -------------------------------------------------------------------------------- /test/scripts/_U/_U_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_U/_U_06.test -------------------------------------------------------------------------------- /test/scripts/_V/_V_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_V/_V_01a.test -------------------------------------------------------------------------------- /test/scripts/_V/_V_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_V/_V_01b.test -------------------------------------------------------------------------------- /test/scripts/_W/_W_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_W/_W_01a.test -------------------------------------------------------------------------------- /test/scripts/_W/_W_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_W/_W_01b.test -------------------------------------------------------------------------------- /test/scripts/_X/_X_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_X/_X_01.test -------------------------------------------------------------------------------- /test/scripts/_X/_X_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_X/_X_02.test -------------------------------------------------------------------------------- /test/scripts/_X/_X_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_X/_X_03.test -------------------------------------------------------------------------------- /test/scripts/_X/_X_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_X/_X_04.test -------------------------------------------------------------------------------- /test/scripts/_Y/_Y_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_Y/_Y_01.test -------------------------------------------------------------------------------- /test/scripts/_Z/_Z_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/_Z/_Z_01.test -------------------------------------------------------------------------------- /test/scripts/basic/basic_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/basic/basic_01.test -------------------------------------------------------------------------------- /test/scripts/basic/basic_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/basic/basic_02.test -------------------------------------------------------------------------------- /test/scripts/bracket/bracket_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bracket/bracket_01.test -------------------------------------------------------------------------------- /test/scripts/bracket/bracket_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bracket/bracket_02.test -------------------------------------------------------------------------------- /test/scripts/bracket/bracket_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bracket/bracket_03.test -------------------------------------------------------------------------------- /test/scripts/bracket/bracket_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bracket/bracket_04.test -------------------------------------------------------------------------------- /test/scripts/bslash/bslash_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bslash/bslash_01.test -------------------------------------------------------------------------------- /test/scripts/bslash/bslash_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/bslash/bslash_02.test -------------------------------------------------------------------------------- /test/scripts/digits/digits_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/digits/digits_01.test -------------------------------------------------------------------------------- /test/scripts/digits/digits_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/digits/digits_02a.test -------------------------------------------------------------------------------- /test/scripts/digits/digits_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/digits/digits_02b.test -------------------------------------------------------------------------------- /test/scripts/digits/digits_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/digits/digits_03.test -------------------------------------------------------------------------------- /test/scripts/dot/dot_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/dot/dot_01.test -------------------------------------------------------------------------------- /test/scripts/equals/equals_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/equals/equals_01.test -------------------------------------------------------------------------------- /test/scripts/equals/equals_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/equals/equals_02.test -------------------------------------------------------------------------------- /test/scripts/equals/equals_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/equals/equals_03.test -------------------------------------------------------------------------------- /test/scripts/errors/ERR.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/ERR.test -------------------------------------------------------------------------------- /test/scripts/errors/ILL_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/ILL_01.test -------------------------------------------------------------------------------- /test/scripts/errors/ILL_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/ILL_02.test -------------------------------------------------------------------------------- /test/scripts/errors/ILL_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/ILL_03.test -------------------------------------------------------------------------------- /test/scripts/errors/ILL_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/ILL_04.test -------------------------------------------------------------------------------- /test/scripts/errors/POP.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/POP.test -------------------------------------------------------------------------------- /test/scripts/errors/question.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/question.test -------------------------------------------------------------------------------- /test/scripts/errors/slash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/errors/slash.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_01.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_02.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03a.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03b.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03c.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03d.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03e.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_03f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_03f.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_04.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_05.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_06.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_07a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_07a.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_07b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_07b.test -------------------------------------------------------------------------------- /test/scripts/expr/expr_07c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/expr/expr_07c.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_01a.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_01b.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_01c.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_02a.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_02b.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_03a.test -------------------------------------------------------------------------------- /test/scripts/flow/flow_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/flow/flow_03b.test -------------------------------------------------------------------------------- /test/scripts/if/if_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_01a.test -------------------------------------------------------------------------------- /test/scripts/if/if_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_01b.test -------------------------------------------------------------------------------- /test/scripts/if/if_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_01c.test -------------------------------------------------------------------------------- /test/scripts/if/if_01d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_01d.test -------------------------------------------------------------------------------- /test/scripts/if/if_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02a.test -------------------------------------------------------------------------------- /test/scripts/if/if_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02b.test -------------------------------------------------------------------------------- /test/scripts/if/if_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02c.test -------------------------------------------------------------------------------- /test/scripts/if/if_02d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02d.test -------------------------------------------------------------------------------- /test/scripts/if/if_02e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02e.test -------------------------------------------------------------------------------- /test/scripts/if/if_02f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02f.test -------------------------------------------------------------------------------- /test/scripts/if/if_02g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02g.test -------------------------------------------------------------------------------- /test/scripts/if/if_02h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02h.test -------------------------------------------------------------------------------- /test/scripts/if/if_02i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02i.test -------------------------------------------------------------------------------- /test/scripts/if/if_02j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02j.test -------------------------------------------------------------------------------- /test/scripts/if/if_02k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02k.test -------------------------------------------------------------------------------- /test/scripts/if/if_02l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02l.test -------------------------------------------------------------------------------- /test/scripts/if/if_02m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02m.test -------------------------------------------------------------------------------- /test/scripts/if/if_02n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02n.test -------------------------------------------------------------------------------- /test/scripts/if/if_02o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02o.test -------------------------------------------------------------------------------- /test/scripts/if/if_02p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02p.test -------------------------------------------------------------------------------- /test/scripts/if/if_02q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_02q.test -------------------------------------------------------------------------------- /test/scripts/if/if_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_03a.test -------------------------------------------------------------------------------- /test/scripts/if/if_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_03b.test -------------------------------------------------------------------------------- /test/scripts/if/if_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04a.test -------------------------------------------------------------------------------- /test/scripts/if/if_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04b.test -------------------------------------------------------------------------------- /test/scripts/if/if_04c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04c.test -------------------------------------------------------------------------------- /test/scripts/if/if_04d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04d.test -------------------------------------------------------------------------------- /test/scripts/if/if_04e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04e.test -------------------------------------------------------------------------------- /test/scripts/if/if_04f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04f.test -------------------------------------------------------------------------------- /test/scripts/if/if_04g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04g.test -------------------------------------------------------------------------------- /test/scripts/if/if_04h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04h.test -------------------------------------------------------------------------------- /test/scripts/if/if_04i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04i.test -------------------------------------------------------------------------------- /test/scripts/if/if_04j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04j.test -------------------------------------------------------------------------------- /test/scripts/if/if_04k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04k.test -------------------------------------------------------------------------------- /test/scripts/if/if_04l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/if/if_04l.test -------------------------------------------------------------------------------- /test/scripts/lib/_date.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/lib/_date.test -------------------------------------------------------------------------------- /test/scripts/lib/_init.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/lib/_init.test -------------------------------------------------------------------------------- /test/scripts/lib/_pi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/lib/_pi.test -------------------------------------------------------------------------------- /test/scripts/lib/_show.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/lib/_show.test -------------------------------------------------------------------------------- /test/scripts/lib/_vtedit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/lib/_vtedit.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_01.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_02.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_03.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_04.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_05.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_06.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_07.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_08.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_09.test -------------------------------------------------------------------------------- /test/scripts/loop/loop_10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/loop/loop_10.test -------------------------------------------------------------------------------- /test/scripts/pct/pct_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/pct/pct_01.test -------------------------------------------------------------------------------- /test/scripts/pct/pct_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/pct/pct_02.test -------------------------------------------------------------------------------- /test/scripts/space/space_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/space/space_01.test -------------------------------------------------------------------------------- /test/scripts/space/space_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/space/space_02.test -------------------------------------------------------------------------------- /test/scripts/star/star.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/star/star.test -------------------------------------------------------------------------------- /test/scripts/string/string_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/string/string_01.test -------------------------------------------------------------------------------- /test/scripts/string/string_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/string/string_02.test -------------------------------------------------------------------------------- /test/scripts/tag/tag_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/tag/tag_01.test -------------------------------------------------------------------------------- /test/scripts/tag/tag_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/tag/tag_02.test -------------------------------------------------------------------------------- /test/scripts/tag/tag_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/tag/tag_03.test -------------------------------------------------------------------------------- /test/scripts/tag/tag_04a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/tag/tag_04a.test -------------------------------------------------------------------------------- /test/scripts/tag/tag_04b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/tag/tag_04b.test -------------------------------------------------------------------------------- /test/scripts/text/text_01a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_01a.test -------------------------------------------------------------------------------- /test/scripts/text/text_01b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_01b.test -------------------------------------------------------------------------------- /test/scripts/text/text_01c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_01c.test -------------------------------------------------------------------------------- /test/scripts/text/text_02a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_02a.test -------------------------------------------------------------------------------- /test/scripts/text/text_02b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_02b.test -------------------------------------------------------------------------------- /test/scripts/text/text_02c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_02c.test -------------------------------------------------------------------------------- /test/scripts/text/text_03a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_03a.test -------------------------------------------------------------------------------- /test/scripts/text/text_03b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_03b.test -------------------------------------------------------------------------------- /test/scripts/text/text_03c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/text/text_03c.test -------------------------------------------------------------------------------- /test/scripts/trace/trace_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/trace/trace_01.test -------------------------------------------------------------------------------- /test/scripts/trace/trace_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/trace/trace_02.test -------------------------------------------------------------------------------- /test/scripts/ubar/ubar_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ubar/ubar_01.test -------------------------------------------------------------------------------- /test/scripts/ubar/ubar_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ubar/ubar_02.test -------------------------------------------------------------------------------- /test/scripts/ubar/ubar_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ubar/ubar_03.test -------------------------------------------------------------------------------- /test/scripts/ubar/ubar_04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/ubar/ubar_04.test -------------------------------------------------------------------------------- /test/scripts/up/up_01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/up/up_01.test -------------------------------------------------------------------------------- /test/scripts/up/up_02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/up/up_02.test -------------------------------------------------------------------------------- /test/scripts/up/up_03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpjohnston/TECO-64/HEAD/test/scripts/up/up_03.test --------------------------------------------------------------------------------