├── .dir-locals.el ├── .github └── workflows │ ├── ci.yml │ └── submit.yml ├── .gitignore ├── COPYING ├── MAINTAINER ├── Makefile.cvs ├── README.md ├── RPMNAME ├── Rakefile ├── SUBDIRS ├── agent-any ├── MAINTAINER ├── Makefile.am ├── doc │ ├── Makefile.am │ ├── ag_anyagent.html │ └── replacement.html ├── src │ ├── .gitignore │ ├── AnyAgent.cc │ ├── AnyAgent.h │ ├── AnyAgentBasic.cc │ ├── AnyAgentComplex.cc │ ├── Makefile.am │ └── Y2CCAnyAgent.cc └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── ag_anyagent.test │ ├── Makefile.am │ └── ag_anyagent.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── ag_anyagent_init.exp │ ├── runag_anyagent.cc │ └── tests │ ├── Makefile.am │ ├── etc_fstab.err │ ├── etc_fstab.in │ ├── etc_fstab.out │ ├── etc_fstab.scr │ ├── etc_fstab.ycp │ ├── etc_hosts.err │ ├── etc_hosts.in │ ├── etc_hosts.out │ ├── etc_hosts.scr │ ├── etc_hosts.ycp │ ├── etc_install_inf1.err │ ├── etc_install_inf1.in │ ├── etc_install_inf1.out │ ├── etc_install_inf1.scr │ ├── etc_install_inf1.ycp │ ├── etc_install_inf2.err │ ├── etc_install_inf2.in │ ├── etc_install_inf2.out │ ├── etc_install_inf2.scr │ ├── etc_install_inf2.ycp │ ├── etc_passwd.err │ ├── etc_passwd.in │ ├── etc_passwd.out │ ├── etc_passwd.scr │ ├── etc_passwd.ycp │ ├── parted.err │ ├── parted.in │ ├── parted.out │ ├── parted.scr │ ├── parted.ycp │ ├── proc_cmdline.err │ ├── proc_cmdline.in │ ├── proc_cmdline.out │ ├── proc_cmdline.scr │ ├── proc_cmdline.ycp │ ├── proc_cpuinfo.err │ ├── proc_cpuinfo.in │ ├── proc_cpuinfo.out │ ├── proc_cpuinfo.scr │ ├── proc_cpuinfo.ycp │ ├── proc_devices.err │ ├── proc_devices.in │ ├── proc_devices.out │ ├── proc_devices.scr │ ├── proc_devices.ycp │ ├── proc_dma.err │ ├── proc_dma.in │ ├── proc_dma.out │ ├── proc_dma.scr │ ├── proc_dma.ycp │ ├── proc_fb.err │ ├── proc_fb.in │ ├── proc_fb.out │ ├── proc_fb.scr │ ├── proc_fb.ycp │ ├── proc_filesystems.err │ ├── proc_filesystems.in │ ├── proc_filesystems.out │ ├── proc_filesystems.scr │ ├── proc_filesystems.ycp │ ├── proc_interrupts.err │ ├── proc_interrupts.in │ ├── proc_interrupts.out │ ├── proc_interrupts.scr │ ├── proc_interrupts.ycp │ ├── proc_ioports.err │ ├── proc_ioports.in │ ├── proc_ioports.out │ ├── proc_ioports.scr │ ├── proc_ioports.ycp │ ├── proc_meminfo.err │ ├── proc_meminfo.in │ ├── proc_meminfo.out │ ├── proc_meminfo.scr │ ├── proc_meminfo.ycp │ ├── proc_misc.err │ ├── proc_misc.in │ ├── proc_misc.out │ ├── proc_misc.scr │ ├── proc_misc.ycp │ ├── run_df.err │ ├── run_df.in │ ├── run_df.out │ ├── run_df.scr │ ├── run_df.ycp │ └── runtest.sh ├── agent-dummy ├── .gitignore ├── Makefile.am ├── conf │ ├── Makefile.am │ └── dummy.scr ├── doc │ ├── Makefile.am │ └── ag_dummy.html └── src │ ├── DummyAgent.cc │ ├── DummyAgent.h │ ├── Makefile.am │ └── Y2CCDummyAgent.cc ├── agent-ini ├── .gitignore ├── MAINTAINER ├── Makefile.am ├── conf │ └── Makefile.am ├── doc │ ├── Makefile.am │ ├── TODO.txt │ ├── ag_ini.html │ └── implementation.html ├── src │ ├── .gitignore │ ├── IniAgent.cc │ ├── IniAgent.h │ ├── IniFile.cc │ ├── IniFile.h │ ├── IniParser.cc │ ├── IniParser.h │ ├── Makefile.am │ ├── Y2CCIniAgent.cc │ ├── Y2IniAgentComponent.cc │ ├── Y2IniAgentComponent.h │ ├── quotes.cc │ └── quotes.h └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── ag_ini.debug │ ├── Makefile.am │ └── ag_ini.exp │ ├── ag_ini.multi │ ├── Makefile.am │ └── ag_ini.exp │ ├── ag_ini.test │ ├── Makefile.am │ └── ag_ini.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── debug │ ├── .gitignore │ ├── Makefile.am │ ├── chg-repeat.err │ ├── chg-repeat.in │ ├── chg-repeat.out │ ├── chg-repeat.scr │ ├── chg-repeat.ycp │ ├── chg1.err │ ├── chg1.in │ ├── chg1.out │ ├── chg1.scr │ ├── chg1.ycp │ ├── chg2.err │ ├── chg2.in │ ├── chg2.out │ ├── chg2.scr │ ├── chg2.ycp │ ├── chg3.err │ ├── chg3.in │ ├── chg3.out │ ├── chg3.scr │ ├── chg3.ycp │ ├── err1.err │ ├── err1.in │ ├── err1.out │ ├── err1.scr │ ├── err1.ycp │ ├── runtest.sh │ ├── wr_add.err │ ├── wr_add.in │ ├── wr_add.out │ ├── wr_add.scr │ ├── wr_add.ycp │ ├── wr_addsec.err │ ├── wr_addsec.in │ ├── wr_addsec.out │ ├── wr_addsec.scr │ ├── wr_addsec.ycp │ ├── wr_chg.err │ ├── wr_chg.in │ ├── wr_chg.out │ ├── wr_chg.scr │ ├── wr_chg.ycp │ ├── wr_chgsec.err │ ├── wr_chgsec.in │ ├── wr_chgsec.out │ ├── wr_chgsec.scr │ ├── wr_chgsec.ycp │ ├── wr_deep.err │ ├── wr_deep.in │ ├── wr_deep.out │ ├── wr_deep.scr │ ├── wr_deep.ycp │ ├── write1.err │ ├── write1.in │ ├── write1.out │ ├── write1.scr │ ├── write1.ycp │ ├── write2.err │ ├── write2.in │ ├── write2.out │ ├── write2.scr │ └── write2.ycp │ ├── lib │ ├── Makefile.am │ └── ag_ini_init.exp │ ├── multi │ ├── .gitignore │ ├── Makefile.am │ ├── async.err │ ├── async.in.1 │ ├── async.in.2 │ ├── async.in.3 │ ├── async.out │ ├── async.scr │ ├── async.ycp │ ├── del-all.err │ ├── del-all.in.1 │ ├── del-all.in.2 │ ├── del-all.in.3 │ ├── del-all.in.4 │ ├── del-all.out │ ├── del-all.scr │ ├── del-all.ycp │ ├── del.err │ ├── del.in.1 │ ├── del.in.2 │ ├── del.in.3 │ ├── del.in.4 │ ├── del.out │ ├── del.scr │ ├── del.ycp │ ├── private.err │ ├── private.in.0 │ ├── private.in.1 │ ├── private.in.2 │ ├── private.in.3 │ ├── private.out │ ├── private.scr │ ├── private.ycp │ ├── provs.err │ ├── provs.in.1 │ ├── provs.in.2 │ ├── provs.in.3 │ ├── provs.in.4 │ ├── provs.out │ ├── provs.scr │ ├── provs.ycp │ ├── rewrite1.err │ ├── rewrite1.in.1 │ ├── rewrite1.in.2 │ ├── rewrite1.in.3 │ ├── rewrite1.in.4 │ ├── rewrite1.out │ ├── rewrite1.scr │ ├── rewrite1.ycp │ ├── rewrite2.err │ ├── rewrite2.in.1 │ ├── rewrite2.in.2 │ ├── rewrite2.in.3 │ ├── rewrite2.in.4 │ ├── rewrite2.out │ ├── rewrite2.scr │ ├── rewrite2.ycp │ ├── rewrite3.err │ ├── rewrite3.in.1 │ ├── rewrite3.in.2 │ ├── rewrite3.in.3 │ ├── rewrite3.in.4 │ ├── rewrite3.out │ ├── rewrite3.scr │ ├── rewrite3.ycp │ ├── ro.err │ ├── ro.in.1 │ ├── ro.in.2 │ ├── ro.in.3 │ ├── ro.in.4 │ ├── ro.out │ ├── ro.scr │ ├── ro.ycp │ ├── runtest.sh │ ├── write.err │ ├── write.in.1 │ ├── write.in.2 │ ├── write.out │ ├── write.scr │ └── write.ycp │ ├── runag_ini.cc │ └── tests │ ├── Makefile.am │ ├── add1.err │ ├── add1.in │ ├── add1.out │ ├── add1.scr │ ├── add1.ycp │ ├── all1.err │ ├── all1.in │ ├── all1.out │ ├── all1.scr │ ├── all1.ycp │ ├── chval.err │ ├── chval.in │ ├── chval.out │ ├── chval.scr │ ├── chval.ycp │ ├── comment1.err │ ├── comment1.in │ ├── comment1.out │ ├── comment1.scr │ ├── comment1.ycp │ ├── comment2.err │ ├── comment2.in │ ├── comment2.out │ ├── comment2.scr │ ├── comment2.ycp │ ├── comment3.err │ ├── comment3.in │ ├── comment3.out │ ├── comment3.scr │ ├── comment3.ycp │ ├── comment4.err │ ├── comment4.in │ ├── comment4.out │ ├── comment4.scr │ ├── comment4.ycp │ ├── comment5.err │ ├── comment5.in │ ├── comment5.out │ ├── comment5.scr │ ├── comment5.ycp │ ├── comment6.err │ ├── comment6.in │ ├── comment6.out │ ├── comment6.scr │ ├── comment6.ycp │ ├── cptest │ ├── del1.err │ ├── del1.in │ ├── del1.out │ ├── del1.scr │ ├── del1.ycp │ ├── globval1.err │ ├── globval1.in │ ├── globval1.out │ ├── globval1.scr │ ├── globval1.ycp │ ├── globval2.err │ ├── globval2.in │ ├── globval2.out │ ├── globval2.scr │ ├── globval2.ycp │ ├── icase1.err │ ├── icase1.in │ ├── icase1.out │ ├── icase1.scr │ ├── icase1.ycp │ ├── icase2.err │ ├── icase2.in │ ├── icase2.out │ ├── icase2.scr │ ├── icase2.ycp │ ├── icase3.err │ ├── icase3.in │ ├── icase3.out │ ├── icase3.scr │ ├── icase3.ycp │ ├── icase4.err │ ├── icase4.in │ ├── icase4.out │ ├── icase4.scr │ ├── icase4.ycp │ ├── icase5.err │ ├── icase5.in │ ├── icase5.out │ ├── icase5.scr │ ├── icase5.ycp │ ├── icreg1.err │ ├── icreg1.in │ ├── icreg1.out │ ├── icreg1.scr │ ├── icreg1.ycp │ ├── icreg2.err │ ├── icreg2.in │ ├── icreg2.out │ ├── icreg2.scr │ ├── icreg2.ycp │ ├── ini.err │ ├── ini.in │ ├── ini.out │ ├── ini.scr │ ├── ini.ycp │ ├── linecnt1.err │ ├── linecnt1.in │ ├── linecnt1.out │ ├── linecnt1.scr │ ├── linecnt1.ycp │ ├── multiline1.err │ ├── multiline1.in │ ├── multiline1.out │ ├── multiline1.scr │ ├── multiline1.ycp │ ├── multiline2.err │ ├── multiline2.in │ ├── multiline2.out │ ├── multiline2.scr │ ├── multiline2.ycp │ ├── n1.err │ ├── n1.in │ ├── n1.out │ ├── n1.scr │ ├── n1.ycp │ ├── nonex.err │ ├── nonex.in │ ├── nonex.out │ ├── nonex.scr │ ├── nonex.ycp │ ├── rc1.err │ ├── rc1.in │ ├── rc1.out │ ├── rc1.scr │ ├── rc1.ycp │ ├── rc2.err │ ├── rc2.in │ ├── rc2.out │ ├── rc2.scr │ ├── rc2.ycp │ ├── rc3.err │ ├── rc3.in │ ├── rc3.out │ ├── rc3.scr │ ├── rc3.ycp │ ├── rc4.err │ ├── rc4.in │ ├── rc4.out │ ├── rc4.scr │ ├── rc4.ycp │ ├── repeat.err │ ├── repeat.in │ ├── repeat.out │ ├── repeat.scr │ ├── repeat.ycp │ ├── repeat_opt.err │ ├── repeat_opt.in │ ├── repeat_opt.out │ ├── repeat_opt.scr │ ├── repeat_opt.ycp │ ├── runtest.sh │ ├── shellquotes.err │ ├── shellquotes.in │ ├── shellquotes.out │ ├── shellquotes.scr │ ├── shellquotes.ycp │ ├── subsec1.err │ ├── subsec1.in │ ├── subsec1.out │ ├── subsec1.scr │ ├── subsec1.ycp │ ├── subsec2.err │ ├── subsec2.in │ ├── subsec2.out │ ├── subsec2.scr │ ├── subsec2.ycp │ ├── subsec3.err │ ├── subsec3.in │ ├── subsec3.out │ ├── subsec3.scr │ ├── subsec3.ycp │ ├── subsec4.err │ ├── subsec4.in │ ├── subsec4.out │ ├── subsec4.scr │ ├── subsec4.ycp │ ├── subsec5.err │ ├── subsec5.in │ ├── subsec5.out │ ├── subsec5.scr │ ├── subsec5.ycp │ ├── type.err │ ├── type.in │ ├── type.out │ ├── type.scr │ ├── type.ycp │ ├── type1.err │ ├── type1.in │ ├── type1.out │ ├── type1.scr │ ├── type1.ycp │ ├── type_repeat.err │ ├── type_repeat.in │ ├── type_repeat.out │ ├── type_repeat.scr │ └── type_repeat.ycp ├── agent-modules ├── .gitignore ├── MAINTAINER ├── Makefile.am ├── conf │ ├── Makefile.am │ ├── modprobe_blacklist.scr │ └── modules.scr ├── doc │ ├── Makefile.am │ ├── TODO.txt │ ├── ag_modules.html │ └── modules_conf.altern.txt ├── src │ ├── Makefile.am │ ├── ModulesAgent.cc │ ├── ModulesAgent.h │ ├── ModulesConf.cc │ ├── ModulesConf.h │ ├── Y2CCModulesAgent.cc │ └── Y2Logger.h └── testsuite │ ├── Makefile.am │ ├── ag_modules.test │ ├── Makefile.am │ └── ag_modules.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── ag_modules_init.exp │ ├── runmodules.cc │ └── tests │ ├── .gitignore │ ├── Makefile.am │ ├── dir.err │ ├── dir.in │ ├── dir.out │ ├── dir.ycp │ ├── missing.err │ ├── missing.out │ ├── missing.ycp │ ├── read1.err │ ├── read1.in │ ├── read1.out │ ├── read1.ycp │ ├── runtest.sh │ ├── write1.err │ ├── write1.in │ ├── write1.out │ ├── write1.ycp │ ├── write2.err │ ├── write2.in │ ├── write2.out │ ├── write2.ycp │ ├── write3.err │ ├── write3.in │ ├── write3.out │ ├── write3.ycp │ ├── write4.err │ ├── write4.in │ ├── write4.out │ ├── write4.scr │ └── write4.ycp ├── agent-process ├── .gitignore ├── MAINTAINER ├── Makefile.am ├── conf │ ├── Makefile.am │ └── process.scr ├── doc │ ├── Makefile.am │ ├── ag_process.html │ ├── ag_process_example.ycp │ └── autodocs │ │ └── Makefile.am ├── src │ ├── Makefile.am │ ├── ProcessAgent.cc │ ├── ProcessAgent.h │ └── Y2CCProcessAgent.cc └── testsuite │ ├── Makefile.am │ ├── ag_process.test │ ├── Makefile.am │ └── ag_process.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── ag_process_init.exp │ ├── run_ag_process.cc │ └── tests │ ├── C_locale.err │ ├── C_locale.out │ ├── C_locale.ycp │ ├── Dir.err │ ├── Dir.out │ ├── Dir.ycp │ ├── Makefile.am │ ├── env.err │ ├── env.out │ ├── env.ycp │ ├── invalid_paths.err │ ├── invalid_paths.out │ ├── invalid_paths.ycp │ ├── invalid_values.err │ ├── invalid_values.out │ ├── invalid_values.ycp │ ├── kill.ycp.disabled │ ├── large_output.err │ ├── large_output.out │ ├── large_output.ycp │ ├── runtest.sh │ ├── status.err │ ├── status.out │ ├── status.ycp │ ├── stderr.err │ ├── stderr.out │ ├── stderr.ycp │ ├── stdout.err │ ├── stdout.out │ ├── stdout.ycp │ ├── tty.err │ ├── tty.out │ └── tty.ycp ├── agent-resolver ├── Makefile.am ├── conf │ ├── Makefile.am │ └── resolv.scr ├── doc │ ├── Makefile.am │ └── ag_resolver.html ├── src │ ├── Makefile.am │ ├── ResolverAgent.cc │ ├── ResolverAgent.h │ └── Y2CCResolverAgent.cc └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── ag_resolver.test │ ├── Makefile.am │ └── ag_resolver.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── ag_resolver_init.exp │ ├── runresolver.cc │ └── tests │ ├── .gitignore │ ├── Makefile.am │ ├── read1.err │ ├── read1.in │ ├── read1.out │ ├── read1.ycp │ ├── read2.err │ ├── read2.in │ ├── read2.out │ ├── read2.ycp │ ├── read3.err │ ├── read3.in │ ├── read3.out │ ├── read3.ycp │ ├── runtest.sh │ ├── write1.err │ ├── write1.in │ ├── write1.out │ ├── write1.ycp │ ├── write2.err │ ├── write2.in │ ├── write2.out │ └── write2.ycp ├── agent-system ├── MAINTAINER ├── Makefile.am ├── conf │ ├── Makefile.am │ └── target.scr ├── doc │ ├── .gitignore │ └── Makefile.am ├── src │ ├── .gitignore │ ├── Makefile.am │ ├── ShellCommand.cc │ ├── ShellCommand.h │ ├── SystemAgent.cc │ ├── SystemAgent.h │ └── Y2CCSystemAgent.cc └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── ag_system.test │ ├── Makefile.am │ └── ag_system.exp │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── ag_system_init.exp │ ├── runag_system.cc │ └── tests │ ├── Makefile.am │ ├── bash.err │ ├── bash.out │ ├── bash.ycp │ ├── byte.err │ ├── byte.out │ ├── byte.write │ ├── byte.ycp │ ├── data1.read │ ├── data2.read │ ├── remove.err │ ├── remove.out │ ├── remove.ycp │ ├── runtest.sh │ ├── size.err │ ├── size.out │ ├── size.ycp │ ├── stat.err │ ├── stat.out │ ├── stat.ycp │ ├── string.err │ ├── string.out │ ├── string.write │ ├── string.ycp │ ├── tmpdir.err │ ├── tmpdir.out │ ├── tmpdir.ycp │ ├── yast2.err │ ├── yast2.out │ ├── yast2.ycp │ ├── ycp.err │ ├── ycp.out │ └── ycp.ycp ├── agents-non-y2 ├── Makefile.am ├── ag_hostnames └── conf │ ├── Makefile.am │ └── net_hostnames.scr ├── agents-perl ├── Makefile.am ├── ag_background ├── ag_modinfo ├── ag_ping ├── ag_yp_makefile ├── conf │ ├── Makefile.am │ ├── background.scr │ ├── modinfo.scr │ ├── ping.scr │ └── yp_makefile.scr ├── doc │ ├── .gitignore │ ├── Makefile.am │ ├── ag_background.html │ ├── ag_background_example.ycp │ ├── ag_modinfo.html │ ├── ag_yp_makefile.html │ ├── docu0perl.htm │ ├── docu1perl.htm │ ├── docu2perl.htm │ ├── docu3perl.htm │ ├── docu4perl.htm │ ├── docu5perl.htm │ ├── docu6perl.htm │ ├── docu7perl.htm │ └── ycp-pm.html ├── lib │ ├── .gitignore │ ├── MANIFEST │ ├── Makefile.PL │ ├── Makefile.am │ ├── YaST │ │ └── SCRAgent.pm │ ├── ycp.pm │ └── ycp.test └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── attacks.txt │ ├── t-double-status.exp │ ├── t-echo-sleep.exp │ ├── t-echo.exp │ ├── t-norun.exp │ ├── t-srcmgr1.exp │ ├── t-srcmgr2.exp │ ├── test-common.exp │ └── totest.txt ├── autodocs ├── .gitignore └── Makefile.am ├── base ├── MAINTAINER ├── Makefile.am ├── src │ ├── .gitignore │ ├── Makefile.am │ ├── y2base-smoke-test │ └── y2base.cc ├── test-helper.exp ├── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── data │ │ └── toplevel │ │ │ └── target_root │ ├── target_root.ycp │ └── y2base.sh └── tools │ ├── Makefile.am │ ├── autorun │ ├── .gitignore │ ├── Makefile.am │ └── md_autorun.c │ ├── devtools │ ├── Makefile.am │ └── generateYCPWrappers │ ├── elf-arch │ ├── .gitignore │ ├── Makefile.am │ └── elf-arch.c │ ├── startshell │ ├── .gitignore │ ├── Makefile.am │ └── startshell.c │ ├── tty_wrapper │ ├── .gitignore │ ├── Makefile.am │ └── tty_wrapper.cc │ └── ycpc │ ├── .gitignore │ ├── Makefile.am │ ├── doc │ ├── Makefile.am │ ├── ycpc-data.xml │ └── ycpc.xml │ ├── ybcdump │ └── ycpc.cc ├── configure.in.in ├── doc ├── README.md └── systemagent.md ├── libscr ├── MAINTAINER ├── Makefile.am ├── doc │ ├── Makefile.am │ └── repository.png ├── src │ ├── Makefile.am │ ├── SCR.cc │ ├── SCRAgent.cc │ └── include │ │ ├── Makefile.am │ │ └── scr │ │ ├── Makefile.am │ │ ├── SCR.h │ │ ├── SCRAgent.h │ │ ├── Y2AgentComponent.h │ │ ├── Y2CCAgentComponent.h │ │ └── run_agent.h └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── config │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── libscr.test │ └── libscr.exp │ ├── runscr.cc │ └── tests │ ├── test0.err │ ├── test0.out │ └── test0.scr ├── liby2 ├── .spec ├── MAINTAINER ├── Makefile.am ├── doc │ ├── Makefile.am │ ├── README.componentsearch │ └── componentcreator.txt ├── src │ ├── Makefile.am │ ├── SymbolEntry.cc │ ├── Y2CCPlugin.cc │ ├── Y2CCProgram.cc │ ├── Y2CCSerial.cc │ ├── Y2CCStdio.cc │ ├── Y2Component.cc │ ├── Y2ComponentBroker.cc │ ├── Y2ComponentCreator.cc │ ├── Y2ErrorComponent.cc │ ├── Y2LanguageLoader.cc │ ├── Y2Namespace.cc │ ├── Y2PluginComponent.cc │ ├── Y2ProgramComponent.cc │ ├── Y2SerialComponent.cc │ ├── Y2StdioComponent.cc │ ├── genericfrontend.cc │ └── include │ │ ├── Makefile.am │ │ ├── Y2.h │ │ └── y2 │ │ ├── Makefile.am │ │ ├── SymbolEntry.h │ │ ├── Y2CCPlugin.h │ │ ├── Y2CCProgram.h │ │ ├── Y2CCSerial.h │ │ ├── Y2CCStdio.h │ │ ├── Y2Component.h │ │ ├── Y2ComponentBroker.h │ │ ├── Y2ComponentCreator.h │ │ ├── Y2ErrorComponent.h │ │ ├── Y2Function.h │ │ ├── Y2Namespace.h │ │ ├── Y2PluginComponent.h │ │ ├── Y2ProgramComponent.h │ │ ├── Y2SerialComponent.h │ │ ├── Y2StdioComponent.h │ │ └── exitcodes.h └── testsuite │ ├── Makefile.am │ ├── servers_non_y2 │ └── ag_program_search │ └── t-program-search ├── liby2util-r ├── Makefile.am ├── src │ ├── ExternalDataSource.cc │ ├── ExternalProgram.cc │ ├── Makefile.am │ ├── MemUsage.cc │ ├── PathInfo.cc │ ├── Pathname.cc │ ├── Process.cc │ ├── Rep.cc │ ├── Y2SLog.cc │ ├── include │ │ ├── Makefile.am │ │ └── y2util │ │ │ ├── ExternalDataSource.h │ │ │ ├── ExternalProgram.h │ │ │ ├── Makefile.am │ │ │ ├── MemUsage.h │ │ │ ├── PathInfo.h │ │ │ ├── Pathname.h │ │ │ ├── Process.h │ │ │ ├── Rep.h │ │ │ ├── RepDef.h │ │ │ ├── TreeItem.h │ │ │ ├── Ustring.h │ │ │ ├── Y2SLog.h │ │ │ ├── miniini.h │ │ │ ├── stringutil.h │ │ │ ├── y2changes.h │ │ │ └── y2log.h │ ├── miniini.cc │ ├── stringutil.cc │ ├── y2changes.cc │ └── y2log.cc └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── liby2util_init.exp │ ├── liby2util.test │ ├── Makefile.am │ └── liby2util.exp │ ├── test_Y2SLog.cc │ ├── test_chroot.cc │ ├── test_counted_pointer │ ├── Makefile │ ├── Makefile.test │ ├── PtrHier.h │ └── tt.cc │ ├── test_mkdir.cc │ ├── test_strutil.cc │ ├── test_thread_log.cc │ └── tests │ ├── 0001.out │ ├── 0002.out │ ├── 0003.out │ ├── 0004.out │ ├── 0005.out │ ├── 0006.out │ ├── 0007.out │ ├── 0008.out │ ├── 0009.out │ ├── 0010.out │ ├── 0011.out │ ├── 0012.out │ ├── 0013.out │ ├── 0014.out │ ├── 0015.out │ ├── 0016.out │ ├── 0017.out │ ├── 0018.out │ ├── 0019.out │ ├── 0020.out │ ├── 0021.out │ ├── 0022.out │ ├── 0023.out │ ├── 0024.out │ ├── 0025.out │ ├── 0026.out │ ├── 0027.out │ ├── 0028.out │ ├── 0029.out │ ├── 0030.out │ ├── 0031.out │ ├── 0032.out │ ├── 0033.out │ ├── 0034.out │ ├── 0035.out │ ├── 0036.out │ ├── 0037.out │ ├── 0038.out │ ├── 0039.out │ ├── 0040.out │ ├── 0041.out │ ├── 0042.out │ ├── Makefile.am │ └── urls ├── libycp ├── MAINTAINER ├── Makefile.am ├── doc │ ├── .gitignore │ ├── Changes │ ├── Makefile.am │ ├── ToDo │ ├── YCP-datatypes.html.in │ ├── YCP-operators.html.in │ ├── YCP-operators.xml │ ├── YCP-statements.html.in │ ├── builtins.xml │ ├── changes.html │ ├── logging.html │ ├── logging.xml │ └── ycp │ │ ├── Makefile.am │ │ ├── customize-fo.xsl │ │ ├── customize-html.xsl │ │ ├── examples │ │ ├── HelloWorld.ycp │ │ └── hello_world_1.ycp │ │ ├── header.xsl │ │ ├── html │ │ ├── images │ │ │ ├── admon │ │ │ │ ├── caution.gif │ │ │ │ ├── caution.png │ │ │ │ ├── caution.tif │ │ │ │ ├── important.gif │ │ │ │ ├── important.png │ │ │ │ ├── important.tif │ │ │ │ ├── note.gif │ │ │ │ ├── note.png │ │ │ │ ├── note.tif │ │ │ │ ├── tip.gif │ │ │ │ ├── tip.png │ │ │ │ ├── tip.tif │ │ │ │ ├── warning.gif │ │ │ │ ├── warning.png │ │ │ │ └── warning.tif │ │ │ ├── draft.png │ │ │ └── navig │ │ │ │ ├── home.png │ │ │ │ ├── next.png │ │ │ │ ├── prev.png │ │ │ │ └── up.png │ │ └── susebooks.css │ │ ├── implementation.xml │ │ ├── implementation │ │ ├── ENTITIES.xml │ │ ├── about-typing │ │ ├── builtins.xml │ │ ├── bytecode.xml │ │ ├── design.xml │ │ ├── todo.xml │ │ └── typesystem.xml │ │ ├── introduction.xml │ │ ├── language.xml │ │ ├── language │ │ ├── ENTITIES.xml │ │ ├── Types │ │ ├── bracket.xml │ │ ├── builtins.xml │ │ ├── expressions.xml │ │ ├── functions.xml │ │ ├── grammar.xml │ │ ├── hello.xml │ │ ├── modules.html │ │ ├── motivation.xml │ │ ├── namespaces.xml │ │ ├── predefined.xml │ │ ├── scopes.xml │ │ ├── statements.xml │ │ └── types.xml │ │ ├── layout.txt │ │ ├── usage.xml │ │ └── ycp.xml ├── src │ ├── .gitignore │ ├── Bytecode.cc │ ├── ExecutionEnvironment.cc │ ├── Import.cc │ ├── Makefile.am │ ├── Parser.cc │ ├── Point.cc │ ├── Scanner.cc │ ├── StaticDeclaration.cc │ ├── SymbolTable.cc │ ├── Type.cc │ ├── TypeStatics.cc │ ├── Xmlcode.cc │ ├── YBlock.cc │ ├── YBuiltin.cc │ ├── YCPBoolean.cc │ ├── YCPBuiltinBoolean.cc │ ├── YCPBuiltinByteblock.cc │ ├── YCPBuiltinFloat.cc │ ├── YCPBuiltinInteger.cc │ ├── YCPBuiltinList.cc │ ├── YCPBuiltinMap.cc │ ├── YCPBuiltinMisc.cc │ ├── YCPBuiltinMultiset.cc │ ├── YCPBuiltinPath.cc │ ├── YCPBuiltinStatement.cc │ ├── YCPBuiltinString.cc │ ├── YCPBuiltinSymbol.cc │ ├── YCPBuiltinTerm.cc │ ├── YCPBuiltinVoid.cc │ ├── YCPByteblock.cc │ ├── YCPCode.cc │ ├── YCPElement.cc │ ├── YCPExternal.cc │ ├── YCPFloat.cc │ ├── YCPInteger.cc │ ├── YCPList.cc │ ├── YCPMap.cc │ ├── YCPPath.cc │ ├── YCPString.cc │ ├── YCPSymbol.cc │ ├── YCPTerm.cc │ ├── YCPValue.cc │ ├── YCPVoid.cc │ ├── YCode.cc │ ├── YExpression.cc │ ├── YStatement.cc │ ├── YSymbolEntry.cc │ ├── include │ │ ├── Makefile.am │ │ ├── YCP.h │ │ └── ycp │ │ │ ├── Bytecode.h │ │ │ ├── ExecutionEnvironment.h │ │ │ ├── Import.h │ │ │ ├── Makefile.am │ │ │ ├── Parser.h │ │ │ ├── Point.h │ │ │ ├── Scanner.h │ │ │ ├── Signatures.h │ │ │ ├── StaticDeclaration.h │ │ │ ├── SymbolTable.h │ │ │ ├── Type.h │ │ │ ├── TypePtr.h │ │ │ ├── Xmlcode.h │ │ │ ├── YBlock.h │ │ │ ├── YCPBoolean.h │ │ │ ├── YCPBuiltinBoolean.h │ │ │ ├── YCPBuiltinByteblock.h │ │ │ ├── YCPBuiltinFloat.h │ │ │ ├── YCPBuiltinInteger.h │ │ │ ├── YCPBuiltinList.h │ │ │ ├── YCPBuiltinMap.h │ │ │ ├── YCPBuiltinMisc.h │ │ │ ├── YCPBuiltinMultiset.h │ │ │ ├── YCPBuiltinPath.h │ │ │ ├── YCPBuiltinString.h │ │ │ ├── YCPBuiltinSymbol.h │ │ │ ├── YCPBuiltinTerm.h │ │ │ ├── YCPBuiltinVoid.h │ │ │ ├── YCPByteblock.h │ │ │ ├── YCPCode.h │ │ │ ├── YCPCodeCompare.h │ │ │ ├── YCPElement.h │ │ │ ├── YCPExternal.h │ │ │ ├── YCPFloat.h │ │ │ ├── YCPInteger.h │ │ │ ├── YCPList.h │ │ │ ├── YCPMap.h │ │ │ ├── YCPPath.h │ │ │ ├── YCPString.h │ │ │ ├── YCPSymbol.h │ │ │ ├── YCPTerm.h │ │ │ ├── YCPValue.h │ │ │ ├── YCPVoid.h │ │ │ ├── YCode.h │ │ │ ├── YCodePtr.h │ │ │ ├── YExpression.h │ │ │ ├── YStatement.h │ │ │ ├── YSymbolEntry.h │ │ │ ├── pathsearch.h │ │ │ ├── toString.h │ │ │ ├── y2log.h │ │ │ ├── y2string.h │ │ │ └── ycpless.h │ ├── parser.yy │ ├── pathsearch.cc │ ├── scanner.ll │ └── y2string.cc └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── README.md │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── differr │ ├── diffout │ ├── hashcheck.cc │ ├── lib │ ├── Makefile.am │ └── libycp_init.exp │ ├── libycp.test │ ├── Makefile.am │ ├── bytecode-compatibility.exp │ ├── bytecode.exp │ └── ycp.exp │ ├── mkdata.sh │ ├── mverr │ ├── mvout │ ├── review │ ├── runc.cc │ ├── runtest.sh │ ├── runycp.cc │ ├── testSignature.cc │ ├── tests │ ├── Include │ │ ├── Scope7.inc │ │ ├── Scope8.inc │ │ ├── impinc.inc │ │ ├── include1.inc │ │ ├── include3.inc │ │ ├── no_brackets.inc │ │ └── no_brackets2.inc │ ├── Makefile.am │ ├── Module │ │ ├── CircularM1.ycp │ │ ├── CircularM2.ycp │ │ ├── ErrModule.ycp │ │ ├── Identifier.ycp │ │ ├── Identifier1.ycp │ │ ├── ImpInc.ycp │ │ ├── Namespace2.ycp │ │ ├── NestedA.ycp │ │ ├── NestedB.ycp │ │ ├── NestedC.ycp │ │ ├── Rec.ycp │ │ ├── Symbolic.ycp │ │ ├── YModule.ycp │ │ ├── YModule0.ycp │ │ ├── YModule1.ycp │ │ └── YModuleC.ycp │ ├── builtin │ │ ├── Backtrace.err │ │ ├── Backtrace.out │ │ ├── Backtrace.ycp │ │ ├── Builtin-Boolean.err │ │ ├── Builtin-Boolean.out │ │ ├── Builtin-Boolean.ycp │ │ ├── Builtin-Byteblock.err │ │ ├── Builtin-Byteblock.out │ │ ├── Builtin-Byteblock.ycp │ │ ├── Builtin-Float.err │ │ ├── Builtin-Float.out │ │ ├── Builtin-Float.ycp │ │ ├── Builtin-Integer.err │ │ ├── Builtin-Integer.out │ │ ├── Builtin-Integer.ycp │ │ ├── Builtin-List.err │ │ ├── Builtin-List.out │ │ ├── Builtin-List.ycp │ │ ├── Builtin-List1.err │ │ ├── Builtin-List1.out │ │ ├── Builtin-List1.ycp │ │ ├── Builtin-List2.err │ │ ├── Builtin-List2.out │ │ ├── Builtin-List2.ycp │ │ ├── Builtin-Map.err │ │ ├── Builtin-Map.out │ │ ├── Builtin-Map.ycp │ │ ├── Builtin-Map1.err │ │ ├── Builtin-Map1.out │ │ ├── Builtin-Map1.ycp │ │ ├── Builtin-Map2.err │ │ ├── Builtin-Map2.out │ │ ├── Builtin-Map2.ycp │ │ ├── Builtin-Map3.err │ │ ├── Builtin-Map3.out │ │ ├── Builtin-Map3.ycp │ │ ├── Builtin-Misc.err │ │ ├── Builtin-Misc.out │ │ ├── Builtin-Misc.ycp │ │ ├── Builtin-Multiset.err │ │ ├── Builtin-Multiset.out │ │ ├── Builtin-Multiset.ycp │ │ ├── Builtin-Path.err │ │ ├── Builtin-Path.out │ │ ├── Builtin-Path.ycp │ │ ├── Builtin-Return.err │ │ ├── Builtin-Return.out │ │ ├── Builtin-Return.ycp │ │ ├── Builtin-Return1.err │ │ ├── Builtin-Return1.out │ │ ├── Builtin-Return1.ycp │ │ ├── Builtin-String.err │ │ ├── Builtin-String.out │ │ ├── Builtin-String.ycp │ │ ├── Builtin-String1.err │ │ ├── Builtin-String1.out │ │ ├── Builtin-String1.ycp │ │ ├── Builtin-Symbol.err │ │ ├── Builtin-Symbol.out │ │ ├── Builtin-Symbol.ycp │ │ ├── Builtin-Term.err │ │ ├── Builtin-Term.out │ │ ├── Builtin-Term.ycp │ │ ├── Builtin-remove.err │ │ ├── Builtin-remove.out │ │ ├── Builtin-remove.ycp │ │ ├── Builtin1.err │ │ ├── Builtin1.out │ │ ├── Builtin1.ycp │ │ ├── Builtin10.err │ │ ├── Builtin10.out │ │ ├── Builtin10.ycp │ │ ├── Builtin11.err │ │ ├── Builtin11.out │ │ ├── Builtin11.ycp │ │ ├── Builtin12.err │ │ ├── Builtin12.out │ │ ├── Builtin12.ycp │ │ ├── Builtin13.err │ │ ├── Builtin13.out │ │ ├── Builtin13.ycp │ │ ├── Builtin14.err │ │ ├── Builtin14.out │ │ ├── Builtin14.ycp │ │ ├── Builtin2.err │ │ ├── Builtin2.out │ │ ├── Builtin2.ycp │ │ ├── Builtin3.err │ │ ├── Builtin3.out │ │ ├── Builtin3.ycp │ │ ├── Builtin4.err │ │ ├── Builtin4.out │ │ ├── Builtin4.ycp │ │ ├── Builtin5.err │ │ ├── Builtin5.out │ │ ├── Builtin5.ycp │ │ ├── Builtin6.err │ │ ├── Builtin6.out │ │ ├── Builtin6.ycp │ │ ├── Builtin7.err │ │ ├── Builtin7.out │ │ ├── Builtin7.ycp │ │ ├── Builtin8.err │ │ ├── Builtin8.out │ │ ├── Builtin8.ycp │ │ ├── Builtin9.err │ │ ├── Builtin9.out │ │ ├── Builtin9.ycp │ │ ├── Builtin_II.err │ │ ├── Builtin_II.out │ │ ├── Builtin_II.ycp │ │ ├── Builtin_III.err │ │ ├── Builtin_III.out │ │ ├── Builtin_III.ycp │ │ ├── Builtin_IV.err │ │ ├── Builtin_IV.out │ │ ├── Builtin_IV.ycp │ │ ├── Builtin_IX.err │ │ ├── Builtin_IX.out │ │ ├── Builtin_IX.ycp │ │ ├── Builtin_V.err │ │ ├── Builtin_V.out │ │ ├── Builtin_V.ycp │ │ ├── Builtin_VI.err │ │ ├── Builtin_VI.out │ │ ├── Builtin_VI.ycp │ │ ├── Builtin_VII.err │ │ ├── Builtin_VII.out │ │ ├── Builtin_VII.ycp │ │ ├── Builtin_VIII.err │ │ ├── Builtin_VIII.out │ │ ├── Builtin_VIII.ycp │ │ ├── Builtin_X.err │ │ ├── Builtin_X.out │ │ ├── Builtin_X.ycp │ │ ├── Builtin_XI.err │ │ ├── Builtin_XI.out │ │ ├── Builtin_XI.ycp │ │ ├── Builtin_XII.err │ │ ├── Builtin_XII.out │ │ ├── Builtin_XII.ycp │ │ ├── Random.err │ │ ├── Random.out │ │ ├── Random.ycp │ │ ├── builtin_redeclared.err │ │ ├── builtin_redeclared.out │ │ ├── builtin_redeclared.ycp │ │ ├── flatten.err │ │ ├── flatten.out │ │ ├── flatten.ycp │ │ ├── manyparams.err │ │ ├── manyparams.out │ │ ├── manyparams.ycp │ │ ├── revlist.err │ │ ├── revlist.out │ │ ├── revlist.ycp │ │ ├── sformat.err │ │ ├── sformat.out │ │ ├── sformat.ycp │ │ ├── swaplist.err │ │ ├── swaplist.out │ │ └── swaplist.ycp │ ├── bytecode-compatibility │ │ ├── 9.1 │ │ │ ├── Include │ │ │ │ └── impinc.inc │ │ │ ├── Makefile.am │ │ │ ├── Module │ │ │ │ ├── Identifier.err │ │ │ │ ├── Identifier.out │ │ │ │ ├── Identifier.ybc │ │ │ │ ├── Identifier2.err │ │ │ │ ├── Identifier2.out │ │ │ │ ├── Identifier2.ybc │ │ │ │ ├── ImpInc.err │ │ │ │ ├── ImpInc.out │ │ │ │ ├── ImpInc.ybc │ │ │ │ ├── Module0.err │ │ │ │ ├── Module0.out │ │ │ │ ├── Module0.ybc │ │ │ │ ├── NameOfModule.err │ │ │ │ ├── NameOfModule.out │ │ │ │ ├── NameOfModule.ybc │ │ │ │ ├── NameOfModuleConst.err │ │ │ │ ├── NameOfModuleConst.out │ │ │ │ ├── NameOfModuleConst.ybc │ │ │ │ ├── Namespace.err │ │ │ │ ├── Namespace.out │ │ │ │ ├── Namespace.ybc │ │ │ │ ├── Rec.err │ │ │ │ ├── Rec.out │ │ │ │ ├── Rec.ybc │ │ │ │ ├── Self.err │ │ │ │ ├── Self.out │ │ │ │ ├── Self.ybc │ │ │ │ ├── Summary.err │ │ │ │ ├── Summary.out │ │ │ │ ├── Summary.ybc │ │ │ │ ├── module1.err │ │ │ │ ├── module1.out │ │ │ │ ├── module1.ybc │ │ │ │ ├── modulec.err │ │ │ │ ├── modulec.out │ │ │ │ └── modulec.ybc │ │ │ ├── Xmodules │ │ │ │ ├── Namespace1.err │ │ │ │ ├── Namespace1.out │ │ │ │ ├── Namespace1.ybc │ │ │ │ ├── Namespace2.err │ │ │ │ ├── Namespace2.out │ │ │ │ ├── Namespace3.err │ │ │ │ ├── Namespace3.out │ │ │ │ ├── Namespace3.ybc │ │ │ │ ├── identifier2i.err │ │ │ │ ├── identifier2i.out │ │ │ │ ├── identifier2i.ybc │ │ │ │ ├── impinc1.err │ │ │ │ ├── impinc1.out │ │ │ │ ├── impinc1.ybc │ │ │ │ ├── impinc2.err │ │ │ │ ├── impinc2.out │ │ │ │ ├── impinc2.ybc │ │ │ │ ├── module0i.err │ │ │ │ ├── module0i.out │ │ │ │ ├── module0i.ybc │ │ │ │ ├── module1i.err │ │ │ │ ├── module1i.out │ │ │ │ ├── module1i.ybc │ │ │ │ ├── moduleci.err │ │ │ │ ├── moduleci.out │ │ │ │ ├── moduleci.ybc │ │ │ │ ├── nameofmodule1.err │ │ │ │ ├── nameofmodule1.out │ │ │ │ ├── nameofmodule1.ybc │ │ │ │ ├── nameofmodule3.err │ │ │ │ ├── nameofmodule3.out │ │ │ │ └── nameofmodule3.ybc │ │ │ ├── constants │ │ │ │ ├── bool-false.err │ │ │ │ ├── bool-false.out │ │ │ │ ├── bool-false.ybc │ │ │ │ ├── bool-true.err │ │ │ │ ├── bool-true.out │ │ │ │ ├── bool-true.ybc │ │ │ │ ├── byteblock-empty.err │ │ │ │ ├── byteblock-empty.out │ │ │ │ ├── byteblock-empty.ybc │ │ │ │ ├── byteblock.err │ │ │ │ ├── byteblock.out │ │ │ │ ├── byteblock.ybc │ │ │ │ ├── float.err │ │ │ │ ├── float.out │ │ │ │ ├── float.ybc │ │ │ │ ├── integer.err │ │ │ │ ├── integer.out │ │ │ │ ├── integer.ybc │ │ │ │ ├── list-empty.err │ │ │ │ ├── list-empty.out │ │ │ │ ├── list-empty.ybc │ │ │ │ ├── list-list.err │ │ │ │ ├── list-list.out │ │ │ │ ├── list-list.ybc │ │ │ │ ├── list-one.err │ │ │ │ ├── list-one.out │ │ │ │ ├── list-one.ybc │ │ │ │ ├── list-term.err │ │ │ │ ├── list-term.out │ │ │ │ ├── list-term.ybc │ │ │ │ ├── list-two.err │ │ │ │ ├── list-two.out │ │ │ │ ├── list-two.ybc │ │ │ │ ├── list.err │ │ │ │ ├── list.out │ │ │ │ ├── list.ybc │ │ │ │ ├── locale.err │ │ │ │ ├── locale.out │ │ │ │ ├── locale.ybc │ │ │ │ ├── map-empty.err │ │ │ │ ├── map-empty.out │ │ │ │ ├── map-empty.ybc │ │ │ │ ├── map-map.err │ │ │ │ ├── map-map.out │ │ │ │ ├── map-map.ybc │ │ │ │ ├── map-one.err │ │ │ │ ├── map-one.out │ │ │ │ ├── map-one.ybc │ │ │ │ ├── map-term.err │ │ │ │ ├── map-term.out │ │ │ │ ├── map-term.ybc │ │ │ │ ├── map-two.err │ │ │ │ ├── map-two.out │ │ │ │ ├── map-two.ybc │ │ │ │ ├── map.err │ │ │ │ ├── map.out │ │ │ │ ├── map.ybc │ │ │ │ ├── nil.err │ │ │ │ ├── nil.out │ │ │ │ ├── nil.ybc │ │ │ │ ├── path-empty.err │ │ │ │ ├── path-empty.out │ │ │ │ ├── path-empty.ybc │ │ │ │ ├── path.err │ │ │ │ ├── path.out │ │ │ │ ├── path.ybc │ │ │ │ ├── string-empty.err │ │ │ │ ├── string-empty.out │ │ │ │ ├── string-empty.ybc │ │ │ │ ├── string.err │ │ │ │ ├── string.out │ │ │ │ ├── string.ybc │ │ │ │ ├── symbol.err │ │ │ │ ├── symbol.out │ │ │ │ ├── symbol.ybc │ │ │ │ ├── void.err │ │ │ │ ├── void.out │ │ │ │ └── void.ybc │ │ │ ├── expressions │ │ │ │ ├── addition.err │ │ │ │ ├── addition.out │ │ │ │ ├── addition.ybc │ │ │ │ ├── and.err │ │ │ │ ├── and.out │ │ │ │ ├── and.ybc │ │ │ │ ├── division.err │ │ │ │ ├── division.out │ │ │ │ ├── division.ybc │ │ │ │ ├── eq.err │ │ │ │ ├── eq.out │ │ │ │ ├── eq.ybc │ │ │ │ ├── functionptr.err │ │ │ │ ├── functionptr.out │ │ │ │ ├── functionptr.ybc │ │ │ │ ├── ge.err │ │ │ │ ├── ge.out │ │ │ │ ├── ge.ybc │ │ │ │ ├── gt.err │ │ │ │ ├── gt.out │ │ │ │ ├── gt.ybc │ │ │ │ ├── le.err │ │ │ │ ├── le.out │ │ │ │ ├── le.ybc │ │ │ │ ├── listexpr.err │ │ │ │ ├── listexpr.out │ │ │ │ ├── listexpr.ybc │ │ │ │ ├── localeexpr.err │ │ │ │ ├── localeexpr.out │ │ │ │ ├── localeexpr.ybc │ │ │ │ ├── lt.err │ │ │ │ ├── lt.out │ │ │ │ ├── lt.ybc │ │ │ │ ├── mapexpr.err │ │ │ │ ├── mapexpr.out │ │ │ │ ├── mapexpr.ybc │ │ │ │ ├── multiplication.err │ │ │ │ ├── multiplication.out │ │ │ │ ├── multiplication.ybc │ │ │ │ ├── ne.err │ │ │ │ ├── ne.out │ │ │ │ ├── ne.ybc │ │ │ │ ├── not.err │ │ │ │ ├── not.out │ │ │ │ ├── not.ybc │ │ │ │ ├── or.err │ │ │ │ ├── or.out │ │ │ │ ├── or.ybc │ │ │ │ ├── subtraction.err │ │ │ │ ├── subtraction.out │ │ │ │ ├── subtraction.ybc │ │ │ │ ├── triple.err │ │ │ │ ├── triple.out │ │ │ │ └── triple.ybc │ │ │ ├── imports │ │ │ │ ├── Identifier.err │ │ │ │ ├── Identifier.out │ │ │ │ ├── Identifier.ybc │ │ │ │ ├── Namespace2a.err │ │ │ │ ├── Namespace2a.out │ │ │ │ ├── Namespace2a.ybc │ │ │ │ ├── Namespace2c.err │ │ │ │ ├── Namespace2c.out │ │ │ │ ├── Namespace2c.ybc │ │ │ │ ├── Rec.err │ │ │ │ ├── Rec.out │ │ │ │ ├── Rec.ybc │ │ │ │ ├── Self.err │ │ │ │ ├── Self.out │ │ │ │ ├── Self.ybc │ │ │ │ ├── Summary.err │ │ │ │ ├── Summary.out │ │ │ │ └── Summary.ybc │ │ │ └── statements │ │ │ │ ├── assignment.err │ │ │ │ ├── assignment.out │ │ │ │ ├── assignment.ybc │ │ │ │ ├── variable-multiple.err │ │ │ │ ├── variable-multiple.out │ │ │ │ ├── variable-multiple.ybc │ │ │ │ ├── variable-single.err │ │ │ │ ├── variable-single.out │ │ │ │ └── variable-single.ybc │ │ └── Makefile.am │ ├── bytecode │ │ ├── Include │ │ │ └── impinc.inc │ │ ├── Makefile.am │ │ ├── Module │ │ │ ├── Identifier.err │ │ │ ├── Identifier.out │ │ │ ├── Identifier.ycp │ │ │ ├── Identifier2.err │ │ │ ├── Identifier2.out │ │ │ ├── Identifier2.ycp │ │ │ ├── ImpInc.err │ │ │ ├── ImpInc.out │ │ │ ├── ImpInc.ycp │ │ │ ├── Module0.err │ │ │ ├── Module0.out │ │ │ ├── Module0.ycp │ │ │ ├── NameOfModule.err │ │ │ ├── NameOfModule.out │ │ │ ├── NameOfModule.ycp │ │ │ ├── NameOfModuleConst.err │ │ │ ├── NameOfModuleConst.out │ │ │ ├── NameOfModuleConst.ycp │ │ │ ├── Namespace.err │ │ │ ├── Namespace.out │ │ │ ├── Namespace.ycp │ │ │ ├── Rec.err │ │ │ ├── Rec.out │ │ │ ├── Rec.ycp │ │ │ ├── Self.err │ │ │ ├── Self.out │ │ │ ├── Self.ycp │ │ │ ├── Summary.err │ │ │ ├── Summary.out │ │ │ ├── Summary.ycp │ │ │ ├── module1.err │ │ │ ├── module1.out │ │ │ ├── module1.ycp │ │ │ ├── modulec.err │ │ │ ├── modulec.out │ │ │ └── modulec.ycp │ │ ├── Xmodules │ │ │ ├── ImpInc.err │ │ │ ├── ImpInc.out │ │ │ ├── Namespace1.err │ │ │ ├── Namespace1.out │ │ │ ├── Namespace1.ycp │ │ │ ├── Namespace2.err │ │ │ ├── Namespace2.out │ │ │ ├── Namespace3.err │ │ │ ├── Namespace3.out │ │ │ ├── Namespace3.ycp │ │ │ ├── identifier2i.err │ │ │ ├── identifier2i.out │ │ │ ├── identifier2i.ycp │ │ │ ├── impinc1.err │ │ │ ├── impinc1.out │ │ │ ├── impinc1.ycp │ │ │ ├── impinc2.err │ │ │ ├── impinc2.out │ │ │ ├── impinc2.ycp │ │ │ ├── module0i.err │ │ │ ├── module0i.out │ │ │ ├── module0i.ycp │ │ │ ├── module1.err │ │ │ ├── module1.out │ │ │ ├── module1i.err │ │ │ ├── module1i.out │ │ │ ├── module1i.ycp │ │ │ ├── moduleci.err │ │ │ ├── moduleci.out │ │ │ ├── moduleci.ycp │ │ │ ├── nameofmodule1.err │ │ │ ├── nameofmodule1.out │ │ │ ├── nameofmodule1.ycp │ │ │ ├── nameofmodule3.err │ │ │ ├── nameofmodule3.out │ │ │ └── nameofmodule3.ycp │ │ ├── constants │ │ │ ├── bool-false.err │ │ │ ├── bool-false.out │ │ │ ├── bool-false.ycp │ │ │ ├── bool-true.err │ │ │ ├── bool-true.out │ │ │ ├── bool-true.ycp │ │ │ ├── byteblock-empty.err │ │ │ ├── byteblock-empty.out │ │ │ ├── byteblock-empty.ycp │ │ │ ├── byteblock.err │ │ │ ├── byteblock.out │ │ │ ├── byteblock.ycp │ │ │ ├── float.err │ │ │ ├── float.out │ │ │ ├── float.ycp │ │ │ ├── integer.err │ │ │ ├── integer.out │ │ │ ├── integer.ycp │ │ │ ├── list-empty.err │ │ │ ├── list-empty.out │ │ │ ├── list-empty.ycp │ │ │ ├── list-list.err │ │ │ ├── list-list.out │ │ │ ├── list-list.ycp │ │ │ ├── list-one.err │ │ │ ├── list-one.out │ │ │ ├── list-one.ycp │ │ │ ├── list-term.err │ │ │ ├── list-term.out │ │ │ ├── list-term.ycp │ │ │ ├── list-two.err │ │ │ ├── list-two.out │ │ │ ├── list-two.ycp │ │ │ ├── list.err │ │ │ ├── list.out │ │ │ ├── list.ycp │ │ │ ├── locale.err │ │ │ ├── locale.out │ │ │ ├── locale.ycp │ │ │ ├── map-empty.err │ │ │ ├── map-empty.out │ │ │ ├── map-empty.ycp │ │ │ ├── map-map.err │ │ │ ├── map-map.out │ │ │ ├── map-map.ycp │ │ │ ├── map-one.err │ │ │ ├── map-one.out │ │ │ ├── map-one.ycp │ │ │ ├── map-term.err │ │ │ ├── map-term.out │ │ │ ├── map-term.ycp │ │ │ ├── map-two.err │ │ │ ├── map-two.out │ │ │ ├── map-two.ycp │ │ │ ├── map.err │ │ │ ├── map.out │ │ │ ├── map.ycp │ │ │ ├── nil.err │ │ │ ├── nil.out │ │ │ ├── nil.ycp │ │ │ ├── path-empty.err │ │ │ ├── path-empty.out │ │ │ ├── path-empty.ycp │ │ │ ├── path.err │ │ │ ├── path.out │ │ │ ├── path.ycp │ │ │ ├── string-empty.err │ │ │ ├── string-empty.out │ │ │ ├── string-empty.ycp │ │ │ ├── string.err │ │ │ ├── string.out │ │ │ ├── string.ycp │ │ │ ├── symbol.err │ │ │ ├── symbol.out │ │ │ ├── symbol.ycp │ │ │ ├── void.err │ │ │ ├── void.out │ │ │ └── void.ycp │ │ ├── expressions │ │ │ ├── addition.err │ │ │ ├── addition.out │ │ │ ├── addition.ycp │ │ │ ├── and.err │ │ │ ├── and.out │ │ │ ├── and.ycp │ │ │ ├── division.err │ │ │ ├── division.out │ │ │ ├── division.ycp │ │ │ ├── eq.err │ │ │ ├── eq.out │ │ │ ├── eq.ycp │ │ │ ├── functionptr.err │ │ │ ├── functionptr.out │ │ │ ├── functionptr.ybc │ │ │ ├── functionptr.ycp │ │ │ ├── ge.err │ │ │ ├── ge.out │ │ │ ├── ge.ycp │ │ │ ├── gt.err │ │ │ ├── gt.out │ │ │ ├── gt.ycp │ │ │ ├── le.err │ │ │ ├── le.out │ │ │ ├── le.ycp │ │ │ ├── listexpr.err │ │ │ ├── listexpr.out │ │ │ ├── listexpr.ycp │ │ │ ├── localeexpr.err │ │ │ ├── localeexpr.out │ │ │ ├── localeexpr.ycp │ │ │ ├── lt.err │ │ │ ├── lt.out │ │ │ ├── lt.ycp │ │ │ ├── mapexpr.err │ │ │ ├── mapexpr.out │ │ │ ├── mapexpr.ycp │ │ │ ├── multiplication.err │ │ │ ├── multiplication.out │ │ │ ├── multiplication.ycp │ │ │ ├── ne.err │ │ │ ├── ne.out │ │ │ ├── ne.ycp │ │ │ ├── not.err │ │ │ ├── not.out │ │ │ ├── not.ycp │ │ │ ├── or.err │ │ │ ├── or.out │ │ │ ├── or.ycp │ │ │ ├── subtraction.err │ │ │ ├── subtraction.out │ │ │ ├── subtraction.ycp │ │ │ ├── triple.err │ │ │ ├── triple.out │ │ │ └── triple.ycp │ │ ├── imports │ │ │ ├── Identifier.err │ │ │ ├── Identifier.out │ │ │ ├── Identifier.ycp │ │ │ ├── Namespace2a.err │ │ │ ├── Namespace2a.out │ │ │ ├── Namespace2a.ycp │ │ │ ├── Namespace2c.err │ │ │ ├── Namespace2c.out │ │ │ ├── Namespace2c.ycp │ │ │ ├── Rec.err │ │ │ ├── Rec.out │ │ │ ├── Rec.ycp │ │ │ ├── Self.err │ │ │ ├── Self.out │ │ │ ├── Self.ycp │ │ │ ├── Summary.err │ │ │ ├── Summary.out │ │ │ └── Summary.ycp │ │ └── statements │ │ │ ├── assignment.err │ │ │ ├── assignment.out │ │ │ ├── assignment.ycp │ │ │ ├── variable-multiple.err │ │ │ ├── variable-multiple.out │ │ │ ├── variable-multiple.ycp │ │ │ ├── variable-single.err │ │ │ ├── variable-single.out │ │ │ └── variable-single.ycp │ ├── errors │ │ ├── BadAssignment.err │ │ ├── BadAssignment.out │ │ ├── BadAssignment.ycp │ │ ├── BadCode.err │ │ ├── BadCode.out │ │ ├── BadCode.ycp │ │ ├── DuplParam.err │ │ ├── DuplParam.out │ │ ├── DuplParam.ycp │ │ ├── Notifications.err │ │ ├── Notifications.log │ │ ├── Notifications.out │ │ ├── Notifications.ycp │ │ ├── Notifications1.err │ │ ├── Notifications1.log │ │ ├── Notifications1.out │ │ ├── Notifications1.ycp │ │ ├── Notifications10.err │ │ ├── Notifications10.out │ │ ├── Notifications10.ycp │ │ ├── Notifications2.err │ │ ├── Notifications2.log │ │ ├── Notifications2.out │ │ ├── Notifications2.ycp │ │ ├── Notifications3.err │ │ ├── Notifications3.out │ │ ├── Notifications3.ycp │ │ ├── Notifications4.err │ │ ├── Notifications4.out │ │ ├── Notifications4.ycp │ │ ├── Notifications5.err │ │ ├── Notifications5.out │ │ ├── Notifications5.ycp │ │ ├── Notifications6.err │ │ ├── Notifications6.out │ │ ├── Notifications6.ycp │ │ ├── Notifications7.err │ │ ├── Notifications7.out │ │ ├── Notifications7.ycp │ │ ├── Notifications8.err │ │ ├── Notifications8.out │ │ ├── Notifications8.ycp │ │ ├── Notifications9.err │ │ ├── Notifications9.out │ │ ├── Notifications9.ycp │ │ ├── Notifications_II.err │ │ ├── Notifications_II.log │ │ ├── Notifications_II.out │ │ ├── Notifications_II.ycp │ │ ├── pathbug.err │ │ ├── pathbug.out │ │ ├── pathbug.ycp │ │ ├── stack-overflow.err │ │ ├── stack-overflow.out │ │ ├── stack-overflow.ycp │ │ ├── termbug.err │ │ ├── termbug.out │ │ └── termbug.ycp │ ├── expressions │ │ ├── BitwiseAnd.err │ │ ├── BitwiseAnd.out │ │ ├── BitwiseAnd.ycp │ │ ├── BitwiseOr.err │ │ ├── BitwiseOr.out │ │ ├── BitwiseOr.ycp │ │ ├── BitwiseXor.err │ │ ├── BitwiseXor.out │ │ ├── BitwiseXor.ycp │ │ ├── Bracket-typeerror.err │ │ ├── Bracket-typeerror.out │ │ ├── Bracket-typeerror.ycp │ │ ├── Bracket.err │ │ ├── Bracket.out │ │ ├── Bracket.ycp │ │ ├── Compare.err │ │ ├── Compare.out │ │ ├── Compare.ycp │ │ ├── Contains.err │ │ ├── Contains.out │ │ ├── Contains.ycp │ │ ├── D_Expression.err │ │ ├── D_Expression.out │ │ ├── D_Expression.ycp │ │ ├── DuplicateKeys.err │ │ ├── DuplicateKeys.out │ │ ├── DuplicateKeys.ycp │ │ ├── Formatted.err │ │ ├── Formatted.out │ │ ├── Formatted.ycp │ │ ├── Formatted1.err │ │ ├── Formatted1.out │ │ ├── Formatted1.ycp │ │ ├── Formatted2.err │ │ ├── Formatted2.out │ │ ├── Formatted2.ycp │ │ ├── Formatted3.err │ │ ├── Formatted3.out │ │ ├── Formatted3.ycp │ │ ├── Haskey.err │ │ ├── Haskey.out │ │ ├── Haskey.ycp │ │ ├── Haskey1.err │ │ ├── Haskey1.out │ │ ├── Haskey1.ycp │ │ ├── Infix.err │ │ ├── Infix.out │ │ ├── Infix.ycp │ │ ├── Infix1.err │ │ ├── Infix1.out │ │ ├── Infix1.ycp │ │ ├── Infix2.err │ │ ├── Infix2.out │ │ ├── Infix2.ycp │ │ ├── Infix3.err │ │ ├── Infix3.out │ │ ├── Infix3.ycp │ │ ├── Is.err │ │ ├── Is.out │ │ ├── Is.ycp │ │ ├── Is1.err │ │ ├── Is1.out │ │ ├── Is1.ycp │ │ ├── Is2.err │ │ ├── Is2.out │ │ ├── Is2.ycp │ │ ├── Is3.err │ │ ├── Is3.out │ │ ├── Is3.ycp │ │ ├── IsFunctionPtr.err │ │ ├── IsFunctionPtr.out │ │ ├── IsFunctionPtr.ycp │ │ ├── Lookup.err │ │ ├── Lookup.out │ │ ├── Lookup.ycp │ │ ├── Lookup2.err │ │ ├── Lookup2.out │ │ ├── Lookup2.ycp │ │ ├── Map.err │ │ ├── Map.out │ │ ├── Map.ycp │ │ ├── Plus.err │ │ ├── Plus.out │ │ ├── Plus.ycp │ │ ├── Precedence.err │ │ ├── Precedence.out │ │ ├── Precedence.ycp │ │ ├── Select_List.err │ │ ├── Select_List.out │ │ ├── Select_List.ycp │ │ ├── Select_Term.err │ │ ├── Select_Term.out │ │ ├── Select_Term.ycp │ │ ├── Shift.err │ │ ├── Shift.out │ │ ├── Shift.ycp │ │ ├── ShortEval.err │ │ ├── ShortEval.out │ │ ├── ShortEval.ycp │ │ ├── ToInteger.err │ │ ├── ToInteger.out │ │ ├── ToInteger.ycp │ │ ├── Triple.err │ │ ├── Triple.out │ │ ├── Triple.ycp │ │ ├── Triple2.err │ │ ├── Triple2.out │ │ ├── Triple2.ycp │ │ ├── bracket_default_function.err │ │ ├── bracket_default_function.out │ │ ├── bracket_default_function.ycp │ │ ├── comma.err │ │ ├── comma.out │ │ ├── comma.ycp │ │ ├── isnil.err │ │ ├── isnil.out │ │ ├── isnil.ycp │ │ ├── namespace_scanner.err │ │ ├── namespace_scanner.out │ │ ├── namespace_scanner.ycp │ │ ├── nocode-parameters.err │ │ ├── nocode-parameters.out │ │ ├── nocode-parameters.ycp │ │ ├── recursion-builtin.err │ │ ├── recursion-builtin.out │ │ ├── recursion-builtin.ycp │ │ ├── recursion-builtin2.err │ │ ├── recursion-builtin2.out │ │ ├── recursion-builtin2.ycp │ │ ├── uninitialized.err │ │ ├── uninitialized.out │ │ └── uninitialized.ycp │ ├── include │ │ └── include.inc │ ├── includes │ │ ├── include.err │ │ ├── include.out │ │ ├── include.ycp │ │ ├── include1.err │ │ ├── include1.out │ │ ├── include1.ycp │ │ ├── include2.err │ │ ├── include2.out │ │ ├── include2.ycp │ │ ├── include3.err │ │ ├── include3.inc1 │ │ ├── include3.out │ │ ├── include3.ycp │ │ ├── noblock_include1.err │ │ ├── noblock_include1.out │ │ ├── noblock_include1.ycp │ │ ├── noblock_include2.err │ │ ├── noblock_include2.out │ │ └── noblock_include2.ycp │ ├── is │ │ ├── complex_is.err │ │ ├── complex_is.out │ │ ├── complex_is.ycp │ │ ├── is_blockreturn42_blockinteger.err │ │ ├── is_blockreturn42_blockinteger.out │ │ ├── is_blockreturn42_blockinteger.ycp │ │ ├── is_blockreturn_blockvoid.err │ │ ├── is_blockreturn_blockvoid.out │ │ ├── is_blockreturn_blockvoid.ycp │ │ ├── is_blockreturn_void.err │ │ ├── is_blockreturn_void.out │ │ ├── is_blockreturn_void.ycp │ │ ├── is_false_void.err │ │ ├── is_false_void.out │ │ ├── is_false_void.ycp │ │ ├── is_float_int.err │ │ ├── is_float_int.out │ │ ├── is_float_int.ycp │ │ ├── is_function.err │ │ ├── is_function.out │ │ ├── is_function.ycp │ │ ├── is_function_reverse.err │ │ ├── is_function_reverse.out │ │ ├── is_function_reverse.ycp │ │ ├── is_int_float.err │ │ ├── is_int_float.out │ │ ├── is_int_float.ycp │ │ ├── is_intvarint_int.err │ │ ├── is_intvarint_int.out │ │ ├── is_intvarint_int.ycp │ │ ├── is_intvarint_void.err │ │ ├── is_intvarint_void.out │ │ ├── is_intvarint_void.ycp │ │ ├── is_intvarnil_int.err │ │ ├── is_intvarnil_int.out │ │ ├── is_intvarnil_int.ycp │ │ ├── is_intvarnil_void.err │ │ ├── is_intvarnil_void.out │ │ ├── is_intvarnil_void.ycp │ │ ├── is_list_any.err │ │ ├── is_list_any.out │ │ ├── is_list_any.ycp │ │ ├── is_listmixed_boolean.err │ │ ├── is_listmixed_boolean.out │ │ ├── is_listmixed_boolean.ycp │ │ ├── is_nil_void.err │ │ ├── is_nil_void.out │ │ ├── is_nil_void.ycp │ │ ├── is_return42_integer.err │ │ ├── is_return42_integer.out │ │ ├── is_return42_integer.ycp │ │ ├── is_return42_void.err │ │ ├── is_return42_void.out │ │ ├── is_return42_void.ycp │ │ ├── is_return_void.err │ │ ├── is_return_void.out │ │ ├── is_return_void.ycp │ │ ├── list_is.err │ │ ├── list_is.out │ │ ├── list_is.ycp │ │ ├── list_is1.err │ │ ├── list_is1.out │ │ └── list_is1.ycp │ ├── modules │ │ ├── BadModule.err │ │ ├── BadModule.out │ │ ├── BadModule.ycp │ │ ├── ImpSelf.err │ │ ├── ImpSelf.out │ │ ├── ImpSelf.ycp │ │ ├── NestedImport.err │ │ ├── NestedImport.out │ │ ├── NestedImport.ycp │ │ ├── circularm1.err │ │ ├── circularm1.out │ │ ├── circularm1.ycp │ │ ├── circularm2.err │ │ ├── circularm2.out │ │ ├── circularm2.ycp │ │ ├── embedded.err │ │ ├── embedded.out │ │ ├── embedded.ycp │ │ ├── emptyModule.err │ │ ├── emptyModule.out │ │ ├── emptyModule.ycp │ │ ├── nameofmoduleconst.err │ │ ├── nameofmoduleconst.out │ │ ├── nameofmoduleconst.ycp │ │ ├── nested.err │ │ ├── nested.out │ │ ├── nested.ycp │ │ ├── rec.err │ │ ├── rec.out │ │ ├── rec.ycp │ │ ├── symbolic.err │ │ ├── symbolic.out │ │ ├── symbolic.ycp │ │ ├── y-double_module.err │ │ ├── y-double_module.out │ │ ├── y-double_module.ycp │ │ ├── y-identifier1-nested.err │ │ ├── y-identifier1-nested.out │ │ ├── y-identifier1-nested.ycp │ │ ├── y-identifier1.err │ │ ├── y-identifier1.out │ │ ├── y-identifier1.ycp │ │ ├── y-impinc1.err │ │ ├── y-impinc1.out │ │ ├── y-impinc1.ycp │ │ ├── y-impinc2.err │ │ ├── y-impinc2.out │ │ ├── y-impinc2.ycp │ │ ├── y-impself.err │ │ ├── y-impself.out │ │ ├── y-impself.ycp │ │ ├── y-module0i.err │ │ ├── y-module0i.out │ │ ├── y-module0i.ycp │ │ ├── y-module1.err │ │ ├── y-module1.out │ │ ├── y-module1i.err │ │ ├── y-module1i.out │ │ ├── y-module1i.ycp │ │ ├── y-moduleci.err │ │ ├── y-moduleci.out │ │ ├── y-moduleci.ycp │ │ ├── y-modulei1.err │ │ ├── y-modulei1.out │ │ ├── y-modulei1.ycp │ │ ├── y-modulei2.err │ │ ├── y-modulei2.out │ │ ├── y-modulei2.ycp │ │ ├── y-modulei3.err │ │ ├── y-modulei3.out │ │ └── y-modulei3.ycp │ ├── namespace │ │ └── ui-block.ycp │ ├── scope │ │ ├── D_DefineTerm.err │ │ ├── D_DefineTerm.out │ │ ├── D_DefineTerm.ycp │ │ ├── D_VarDeclaration.err │ │ ├── D_VarDeclaration.out │ │ ├── D_VarDeclaration.ycp │ │ ├── Declaration.err │ │ ├── Declaration.out │ │ ├── Declaration.ycp │ │ ├── Declaration1.err │ │ ├── Declaration1.out │ │ ├── Declaration1.ycp │ │ ├── Declaration2.err │ │ ├── Declaration2.out │ │ ├── Declaration2.ycp │ │ ├── Define.err │ │ ├── Define.out │ │ ├── Define.ycp │ │ ├── Define1.err │ │ ├── Define1.out │ │ ├── Define1.ycp │ │ ├── GlobalSymbols.err │ │ ├── GlobalSymbols.out │ │ ├── GlobalSymbols.ycp │ │ ├── GlobalSymbols2.err │ │ ├── GlobalSymbols2.out │ │ ├── GlobalSymbols2.ycp │ │ ├── GlobalSymbols3.err │ │ ├── GlobalSymbols3.out │ │ ├── GlobalSymbols3.ycp │ │ ├── GlobalSymbols4.err │ │ ├── GlobalSymbols4.out │ │ ├── GlobalSymbols4.ycp │ │ ├── Namespace2i.err │ │ ├── Namespace2i.out │ │ ├── Namespace2i.ycp │ │ ├── Namespace2ii.err │ │ ├── Namespace2ii.out │ │ ├── Namespace2ii.ycp │ │ ├── Nested.err │ │ ├── Nested.out │ │ ├── Nested.ycp │ │ ├── NestedFunctions.err │ │ ├── NestedFunctions.out │ │ ├── NestedFunctions.ycp │ │ ├── NestedVariables.err │ │ ├── NestedVariables.out │ │ ├── NestedVariables.ycp │ │ ├── Scope1.err │ │ ├── Scope1.out │ │ ├── Scope1.ycp │ │ ├── Scope2.err │ │ ├── Scope2.out │ │ ├── Scope2.ycp │ │ ├── Scope3.err │ │ ├── Scope3.out │ │ ├── Scope3.ycp │ │ ├── Scope4.err │ │ ├── Scope4.out │ │ ├── Scope4.ycp │ │ ├── Scope5.err │ │ ├── Scope5.out │ │ ├── Scope5.ycp │ │ ├── Scope6.err │ │ ├── Scope6.out │ │ ├── Scope6.ycp │ │ ├── Scope7.err │ │ ├── Scope7.out │ │ ├── Scope7.ycp │ │ ├── Scope8.err │ │ ├── Scope8.out │ │ ├── Scope8.ycp │ │ ├── ScopeBad.err │ │ ├── ScopeBad.out │ │ ├── ScopeBad.ycp │ │ ├── ScopeBad1.err │ │ ├── ScopeBad1.out │ │ ├── ScopeBad1.ycp │ │ ├── ScopeGood.err │ │ ├── ScopeGood.out │ │ ├── ScopeGood.ycp │ │ ├── paramcheck.err │ │ ├── paramcheck.out │ │ └── paramcheck.ycp │ ├── statements │ │ ├── BracketAlias.err │ │ ├── BracketAlias.out │ │ ├── BracketAlias.ycp │ │ ├── BracketAssign.err │ │ ├── BracketAssign.out │ │ ├── BracketAssign.ycp │ │ ├── Break1.err │ │ ├── Break1.out │ │ ├── Break1.ycp │ │ ├── Break2.err │ │ ├── Break2.out │ │ ├── Break2.ycp │ │ ├── Break3.err │ │ ├── Break3.out │ │ ├── Break3.ycp │ │ ├── Case.err │ │ ├── Case.out │ │ ├── Case.ycp │ │ ├── Comments.err │ │ ├── Comments.out │ │ ├── Comments.ycp │ │ ├── Continue.err │ │ ├── Continue.out │ │ ├── Continue.ycp │ │ ├── D_Assign.err │ │ ├── D_Assign.out │ │ ├── D_Assign.ycp │ │ ├── D_DoWhile.err │ │ ├── D_DoWhile.out │ │ ├── D_DoWhile.ycp │ │ ├── D_IfThenElse.err │ │ ├── D_IfThenElse.out │ │ ├── D_IfThenElse.ycp │ │ ├── D_RepeatUntil.err │ │ ├── D_RepeatUntil.out │ │ ├── D_RepeatUntil.ycp │ │ ├── D_While.err │ │ ├── D_While.out │ │ ├── D_While.ycp │ │ ├── Deep_Quote.err │ │ ├── Deep_Quote.out │ │ ├── Deep_Quote.ycp │ │ ├── Deep_Quote1.err │ │ ├── Deep_Quote1.out │ │ ├── Deep_Quote1.ycp │ │ ├── Default.err │ │ ├── Default.out │ │ ├── Default.ycp │ │ ├── Do-While-Continue.err │ │ ├── Do-While-Continue.out │ │ ├── Do-While-Continue.ycp │ │ ├── Doublequote.err │ │ ├── Doublequote.out │ │ ├── Doublequote.ycp │ │ ├── Doublequote1.err │ │ ├── Doublequote1.out │ │ ├── Doublequote1.ycp │ │ ├── If.err │ │ ├── If.out │ │ ├── If.ycp │ │ ├── If1.err │ │ ├── If1.out │ │ ├── If1.ycp │ │ ├── If2.err │ │ ├── If2.out │ │ ├── If2.ycp │ │ ├── If3.err │ │ ├── If3.out │ │ ├── If3.ycp │ │ ├── If4.err │ │ ├── If4.out │ │ ├── If4.ycp │ │ ├── IfThenElse1.err │ │ ├── IfThenElse1.out │ │ ├── IfThenElse1.ycp │ │ ├── IfThenElse2.err │ │ ├── IfThenElse2.out │ │ ├── IfThenElse2.ycp │ │ ├── IfThenElse3.err │ │ ├── IfThenElse3.out │ │ ├── IfThenElse3.ycp │ │ ├── IfThenElse4.err │ │ ├── IfThenElse4.out │ │ ├── IfThenElse4.ycp │ │ ├── IfThenElse5.err │ │ ├── IfThenElse5.out │ │ ├── IfThenElse5.ycp │ │ ├── IntermediateStructure.err │ │ ├── IntermediateStructure.out │ │ ├── IntermediateStructure.ycp │ │ ├── Repeat-Until-Continue.err │ │ ├── Repeat-Until-Continue.out │ │ ├── Repeat-Until-Continue.ycp │ │ ├── Repeat.err │ │ ├── Repeat.out │ │ ├── Repeat.ycp │ │ ├── SideEffect.err │ │ ├── SideEffect.out │ │ ├── SideEffect.ycp │ │ ├── Stress.err │ │ ├── Stress.out │ │ ├── Stress.ycp │ │ ├── Switch1.err │ │ ├── Switch1.out │ │ ├── Switch1.ycp │ │ ├── Switch2.err │ │ ├── Switch2.out │ │ ├── Switch2.ycp │ │ ├── Switch3.err │ │ ├── Switch3.out │ │ ├── Switch3.ycp │ │ ├── Switch4.err │ │ ├── Switch4.out │ │ ├── Switch4.ycp │ │ ├── Switch5.err │ │ ├── Switch5.out │ │ ├── Switch5.ycp │ │ ├── Switch6.err │ │ ├── Switch6.out │ │ ├── Switch6.ycp │ │ ├── SymbolDeclaration.err │ │ ├── SymbolDeclaration.out │ │ ├── SymbolDeclaration.ycp │ │ ├── VoidAssign.err │ │ ├── VoidAssign.out │ │ ├── VoidAssign.ycp │ │ ├── While-Continue.err │ │ ├── While-Continue.out │ │ ├── While-Continue.ycp │ │ ├── While.err │ │ ├── While.out │ │ ├── While.ycp │ │ ├── While1.err │ │ ├── While1.out │ │ ├── While1.ycp │ │ ├── While2.err │ │ ├── While2.out │ │ ├── While2.ycp │ │ ├── While3.err │ │ ├── While3.out │ │ ├── While3.ycp │ │ ├── deep_recursion.err │ │ ├── deep_recursion.out │ │ ├── deep_recursion.ycp │ │ ├── dquoted-return.err │ │ ├── dquoted-return.out │ │ ├── dquoted-return.ycp │ │ ├── empty_body.err │ │ ├── empty_body.out │ │ ├── empty_body.ycp │ │ ├── empty_body2.err │ │ ├── empty_body2.out │ │ ├── empty_body2.ycp │ │ ├── empty_body4.err │ │ ├── empty_body4.out │ │ ├── empty_body4.ycp │ │ ├── endless.err │ │ ├── endless.out │ │ ├── endless.ycp │ │ ├── endless1.err │ │ ├── endless1.out │ │ ├── endless1.ycp │ │ ├── foreach_continue.err │ │ ├── foreach_continue.out │ │ ├── foreach_continue.ycp │ │ ├── if_empty.err │ │ ├── if_empty.out │ │ ├── if_empty.ycp │ │ ├── loop.err │ │ ├── loop.out │ │ ├── loop.ycp │ │ ├── nested_return.err │ │ ├── nested_return.out │ │ ├── nested_return.ycp │ │ ├── nested_return_list.err │ │ ├── nested_return_list.out │ │ ├── nested_return_list.ycp │ │ ├── nested_return_map.err │ │ ├── nested_return_map.out │ │ ├── nested_return_map.ycp │ │ ├── textdomain.err │ │ ├── textdomain.out │ │ └── textdomain.ycp │ ├── types │ │ ├── Bracket-reference.err │ │ ├── Bracket-reference.out │ │ ├── Bracket-reference.ycp │ │ ├── Bracket-symbol.err │ │ ├── Bracket-symbol.out │ │ ├── Bracket-symbol.ycp │ │ ├── Events.err │ │ ├── Events.out │ │ ├── Events.ycp │ │ ├── Typedef.err │ │ ├── Typedef.out │ │ ├── Typedef.ycp │ │ ├── Typedef2.err │ │ ├── Typedef2.out │ │ ├── Typedef2.ycp │ │ ├── any-template.err │ │ ├── any-template.out │ │ ├── any-template.ycp │ │ ├── anycasts.err │ │ ├── anycasts.out │ │ ├── anycasts.ycp │ │ ├── blocktype.err │ │ ├── blocktype.out │ │ ├── blocktype.ycp │ │ ├── bracket.err │ │ ├── bracket.out │ │ ├── bracket.ycp │ │ ├── bracket1.err │ │ ├── bracket1.out │ │ ├── bracket1.ycp │ │ ├── bracket2.err │ │ ├── bracket2.out │ │ ├── bracket2.ycp │ │ ├── bracket3.err │ │ ├── bracket3.out │ │ ├── bracket3.ycp │ │ ├── bracket4.err │ │ ├── bracket4.out │ │ ├── bracket4.ycp │ │ ├── bracket5.err │ │ ├── bracket5.out │ │ ├── bracket5.ycp │ │ ├── bracketcast.err │ │ ├── bracketcast.out │ │ ├── bracketcast.ycp │ │ ├── bug34249.err │ │ ├── bug34249.out │ │ ├── bug34249.ycp │ │ ├── bug38375.err │ │ ├── bug38375.out │ │ ├── bug38375.ycp │ │ ├── bug47659.err │ │ ├── bug47659.out │ │ ├── bug47659.ycp │ │ ├── cast-unknown.err │ │ ├── cast-unknown.out │ │ ├── cast-unknown.ycp │ │ ├── cast.err │ │ ├── cast.out │ │ ├── cast.ycp │ │ ├── cast1.err │ │ ├── cast1.out │ │ ├── cast1.ycp │ │ ├── complex.err │ │ ├── complex.out │ │ ├── complex.ycp │ │ ├── const.err │ │ ├── const.out │ │ ├── const.ycp │ │ ├── const1.err │ │ ├── const1.out │ │ ├── const1.ycp │ │ ├── const2.err │ │ ├── const2.out │ │ ├── const2.ycp │ │ ├── const3.err │ │ ├── const3.out │ │ ├── const3.ycp │ │ ├── const_list1.err │ │ ├── const_list1.out │ │ ├── const_list1.ycp │ │ ├── const_list2.err │ │ ├── const_list2.out │ │ ├── const_list2.ycp │ │ ├── const_reference.err │ │ ├── const_reference.out │ │ ├── const_reference.ycp │ │ ├── crash.err │ │ ├── crash.out │ │ ├── crash.ycp │ │ ├── foreach.err │ │ ├── foreach.out │ │ ├── foreach.ycp │ │ ├── functionassign.err │ │ ├── functionassign.out │ │ ├── functionassign.ycp │ │ ├── functionpointer.err │ │ ├── functionpointer.out │ │ ├── functionpointer.ycp │ │ ├── functionpointer2.err │ │ ├── functionpointer2.out │ │ ├── functionpointer2.ycp │ │ ├── functionpointer3.err │ │ ├── functionpointer3.out │ │ ├── functionpointer3.ycp │ │ ├── funptr_is.err │ │ ├── funptr_is.out │ │ ├── funptr_is.ycp │ │ ├── listmapcrash.err │ │ ├── listmapcrash.out │ │ ├── listmapcrash.ycp │ │ ├── lookup.err │ │ ├── lookup.out │ │ ├── lookup.ycp │ │ ├── map_is.err │ │ ├── map_is.out │ │ ├── map_is.ycp │ │ ├── matchtype.err │ │ ├── matchtype.out │ │ ├── matchtype.ycp │ │ ├── matchtype1.err │ │ ├── matchtype1.out │ │ ├── matchtype1.ycp │ │ ├── matchtype2.err │ │ ├── matchtype2.out │ │ ├── matchtype2.ycp │ │ ├── mismatch.err │ │ ├── mismatch.out │ │ ├── mismatch.ycp │ │ ├── nillist.err │ │ ├── nillist.out │ │ ├── nillist.ycp │ │ ├── no-return.err │ │ ├── no-return.out │ │ ├── no-return.ycp │ │ ├── not_a_function.err │ │ ├── not_a_function.out │ │ ├── not_a_function.ycp │ │ ├── parameter.err │ │ ├── parameter.out │ │ ├── parameter.ycp │ │ ├── propagation.err │ │ ├── propagation.out │ │ ├── propagation.ycp │ │ ├── propagation1.err │ │ ├── propagation1.out │ │ ├── propagation1.ycp │ │ ├── propagation2.err │ │ ├── propagation2.out │ │ ├── propagation2.ycp │ │ ├── propagation3.err │ │ ├── propagation3.out │ │ ├── propagation3.ycp │ │ ├── propagation4.err │ │ ├── propagation4.out │ │ ├── propagation4.ycp │ │ ├── propagation5.err │ │ ├── propagation5.out │ │ ├── propagation5.ycp │ │ ├── prototype.err │ │ ├── prototype.out │ │ ├── prototype.ycp │ │ ├── prototype1.err │ │ ├── prototype1.out │ │ ├── prototype1.ycp │ │ ├── prototype2.err │ │ ├── prototype2.out │ │ ├── prototype2.ycp │ │ ├── prototype3.err │ │ ├── prototype3.out │ │ ├── prototype3.ycp │ │ ├── prototype4.err │ │ ├── prototype4.out │ │ ├── prototype4.ycp │ │ ├── prototype5.err │ │ ├── prototype5.out │ │ ├── prototype5.ycp │ │ ├── prototype6.err │ │ ├── prototype6.out │ │ ├── prototype6.ycp │ │ ├── refany_integer.err │ │ ├── refany_integer.out │ │ ├── refany_integer.ycp │ │ ├── refany_string.err │ │ ├── refany_string.out │ │ ├── refany_string.ycp │ │ ├── reference.err │ │ ├── reference.out │ │ ├── reference.ycp │ │ ├── reference1.err │ │ ├── reference1.out │ │ ├── reference1.ycp │ │ ├── reference2.err │ │ ├── reference2.out │ │ ├── reference2.ycp │ │ ├── reference3.err │ │ ├── reference3.out │ │ ├── reference3.ycp │ │ ├── reference4.err │ │ ├── reference4.out │ │ ├── reference4.ycp │ │ ├── reference5.err │ │ ├── reference5.out │ │ ├── reference5.ycp │ │ ├── returntype.err │ │ ├── returntype.out │ │ ├── returntype.ycp │ │ ├── type_bitshift.err │ │ ├── type_bitshift.out │ │ ├── type_bitshift.ycp │ │ ├── typecodes.err │ │ ├── typecodes.out │ │ ├── typecodes.ycp │ │ ├── unspec-types.err │ │ ├── unspec-types.out │ │ └── unspec-types.ycp │ └── values │ │ ├── Block.err │ │ ├── Block.out │ │ ├── Block.ycp │ │ ├── Boolean.err │ │ ├── Boolean.out │ │ ├── Boolean.ycp │ │ ├── Constants.err │ │ ├── Constants.out │ │ ├── Constants.ycp │ │ ├── Constants1.err │ │ ├── Constants1.out │ │ ├── Constants1.ycp │ │ ├── Float.err │ │ ├── Float.out │ │ ├── Float.ycp │ │ ├── FloatExpression.err │ │ ├── FloatExpression.out │ │ ├── FloatExpression.ycp │ │ ├── Integer.err │ │ ├── Integer.out │ │ ├── Integer.ycp │ │ ├── List.err │ │ ├── List.out │ │ ├── List.ycp │ │ ├── List2.err │ │ ├── List2.out │ │ ├── List2.ycp │ │ ├── List3.err │ │ ├── List3.out │ │ ├── List3.ycp │ │ ├── Locale.err │ │ ├── Locale.out │ │ ├── Locale.ycp │ │ ├── Locale1.err │ │ ├── Locale1.out │ │ ├── Locale1.ycp │ │ ├── Maps.err │ │ ├── Maps.out │ │ ├── Maps.ycp │ │ ├── MultilineString.err │ │ ├── MultilineString.out │ │ ├── MultilineString.ycp │ │ ├── Path.err │ │ ├── Path.out │ │ ├── Path.ycp │ │ ├── PathAdd.err │ │ ├── PathAdd.out │ │ ├── PathAdd.ycp │ │ ├── PathCompare.err │ │ ├── PathCompare.out │ │ ├── PathCompare.ycp │ │ ├── PathComplex.err │ │ ├── PathComplex.out │ │ ├── PathComplex.ycp │ │ ├── PathErr1.err │ │ ├── PathErr1.out │ │ ├── PathErr1.ycp │ │ ├── PathErr2.err │ │ ├── PathErr2.out │ │ ├── PathErr2.ycp │ │ ├── PathErr3.err │ │ ├── PathErr3.out │ │ ├── PathErr3.ycp │ │ ├── PathTopath.err │ │ ├── PathTopath.out │ │ ├── PathTopath.ycp │ │ ├── StringConcatenation.err │ │ ├── StringConcatenation.out │ │ ├── StringConcatenation.ycp │ │ ├── StringMultiline.err │ │ ├── StringMultiline.out │ │ ├── StringMultiline.ycp │ │ ├── StringMultiline1.err │ │ ├── StringMultiline1.out │ │ ├── StringMultiline1.ycp │ │ ├── StringOverflow.err │ │ ├── StringOverflow.out │ │ ├── StringOverflow.test │ │ ├── StringOverflow.ycp │ │ ├── Strings.err │ │ ├── Strings.out │ │ ├── Strings.ycp │ │ ├── Unsolved.err │ │ ├── Unsolved.out │ │ ├── Unsolved.ycp │ │ ├── Void.err │ │ ├── Void.out │ │ └── Void.ycp │ ├── testscope.cc │ └── xfail ├── package ├── yast2-core.changes └── yast2-core.spec ├── scr ├── MAINTAINER ├── Makefile.am ├── doc │ ├── .gitignore │ ├── Makefile.am │ ├── SCR-additional.html │ ├── SCR.html.in │ ├── intro_to_scr.html.in │ ├── scr-arch.png │ ├── scr-arch.sda │ ├── scr-tree.png │ ├── scr.txt │ ├── scripting-agent.txt │ └── unloading.html ├── src │ ├── .gitignore │ ├── Makefile.am │ ├── SCRSubAgent.cc │ ├── SCRSubAgent.h │ ├── ScriptingAgent.cc │ ├── ScriptingAgent.h │ ├── Y2CCSCR.cc │ ├── Y2CCSCR.h │ ├── Y2SCRComponent.cc │ └── Y2SCRComponent.h └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── differr │ ├── diffout │ ├── lib │ ├── Makefile.am │ └── scr_init.exp │ ├── runscr.cc │ ├── scr.test │ ├── Makefile.am │ └── scr.exp │ └── tests │ ├── Makefile.am │ ├── dir.err │ ├── dir.out │ ├── dir.ycp │ ├── direct.err │ ├── direct.out │ ├── direct.ycp │ ├── error.err │ ├── error.out │ ├── error.scr │ ├── error.ycp │ ├── haha.scr │ ├── hihi.scr │ ├── huhu.scr │ ├── order.err │ ├── order.out │ ├── order.ycp │ ├── overload.err │ ├── overload.out │ ├── overload.ycp │ ├── register.err │ ├── register.out │ ├── register.ycp │ ├── runtest.sh │ ├── simple.err │ ├── simple.out │ ├── simple.scr │ └── simple.ycp ├── wfm ├── MAINTAINER ├── Makefile.am ├── doc │ ├── .gitignore │ ├── Makefile.am │ ├── callback.html │ ├── dataflow.html │ ├── many-scr.txt │ └── wfm.xml ├── src │ ├── .gitignore │ ├── Makefile.am │ ├── WFM.cc │ ├── WFM.h │ ├── WFMSubAgent.cc │ ├── WFMSubAgent.h │ ├── Y2CCWFM.cc │ ├── Y2CCWFM.h │ ├── Y2WFMComponent.cc │ └── Y2WFMComponent.h └── testsuite │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── config │ ├── Makefile.am │ ├── default.exp │ ├── unix.exp │ └── unknown.exp │ ├── lib │ ├── Makefile.am │ └── wfm_init.exp │ ├── manual-testing │ ├── Pkg.ycp │ ├── PkgAdditionalLocales.ycp │ ├── PkgData.ycp │ ├── PkgDoProvide.ycp │ ├── PkgGetPackages.ycp │ ├── PkgIsAvailable.ycp │ ├── PkgIsProvided.ycp │ ├── PkgLocale.ycp │ ├── PkgProgressCallbacks.ycp │ ├── PkgSourceCallbacks.ycp │ ├── PkgSourceFunctions.ycp │ ├── PkgTargetDU.ycp │ ├── PkgTargetSpace.ycp │ └── PkgTargetUpdateInf.ycp │ ├── modules │ ├── Installation.ycp │ └── Mode.ycp │ ├── runc.cc │ ├── runwfm.cc │ ├── tests │ ├── IncludeLog.err │ ├── IncludeLog.out │ ├── IncludeLog.ycp │ ├── Makefile.am │ ├── default.err │ ├── default.out │ ├── default.ycp │ ├── empty.err │ ├── empty.out │ ├── empty.ycp │ ├── language.err │ ├── language.out │ ├── language.ycp │ ├── runtest.sh │ ├── scrname.err │ ├── scrname.out │ └── scrname.ycp │ ├── wfm.test │ ├── Makefile.am │ ├── modules.exp │ └── wfm.exp │ └── y2wfm.cc ├── yast2-core.pc.in └── yml ├── MAINTAINER └── src ├── Makefile ├── YMLparser.cc └── test ├── minitest.xml ├── y2test.ycp └── yml-test.xml /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/submit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/.github/workflows/submit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/COPYING -------------------------------------------------------------------------------- /MAINTAINER: -------------------------------------------------------------------------------- 1 | Deprecated file. Use `osc maintainer yast2-core` instead. 2 | -------------------------------------------------------------------------------- /Makefile.cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/Makefile.cvs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/README.md -------------------------------------------------------------------------------- /RPMNAME: -------------------------------------------------------------------------------- 1 | yast2-core 2 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/Rakefile -------------------------------------------------------------------------------- /SUBDIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/SUBDIRS -------------------------------------------------------------------------------- /agent-any/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/MAINTAINER -------------------------------------------------------------------------------- /agent-any/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/agent-any 3 | # 4 | 5 | SUBDIRS = src doc testsuite 6 | -------------------------------------------------------------------------------- /agent-any/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/doc/Makefile.am -------------------------------------------------------------------------------- /agent-any/doc/ag_anyagent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/doc/ag_anyagent.html -------------------------------------------------------------------------------- /agent-any/doc/replacement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/doc/replacement.html -------------------------------------------------------------------------------- /agent-any/src/.gitignore: -------------------------------------------------------------------------------- 1 | ag_anyagent 2 | *.kdoc 3 | -------------------------------------------------------------------------------- /agent-any/src/AnyAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/AnyAgent.cc -------------------------------------------------------------------------------- /agent-any/src/AnyAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/AnyAgent.h -------------------------------------------------------------------------------- /agent-any/src/AnyAgentBasic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/AnyAgentBasic.cc -------------------------------------------------------------------------------- /agent-any/src/AnyAgentComplex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/AnyAgentComplex.cc -------------------------------------------------------------------------------- /agent-any/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/Makefile.am -------------------------------------------------------------------------------- /agent-any/src/Y2CCAnyAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/src/Y2CCAnyAgent.cc -------------------------------------------------------------------------------- /agent-any/testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | .libs 2 | .deps 3 | site.exp 4 | *.sum 5 | *.log 6 | tmp.* 7 | runag_anyagent 8 | -------------------------------------------------------------------------------- /agent-any/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/testsuite/Makefile.am -------------------------------------------------------------------------------- /agent-any/testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-any/testsuite/README -------------------------------------------------------------------------------- /agent-any/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-any/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-any/testsuite/lib/ag_anyagent_init.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_fstab.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_fstab.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_hosts.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_hosts.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_install_inf1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_install_inf1.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_install_inf2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_install_inf2.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_passwd.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/etc_passwd.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/parted.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_cmdline.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_cmdline.in: -------------------------------------------------------------------------------- 1 | BOOT_IMAGE=fbdev ro root=801 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_cmdline.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_cpuinfo.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_cpuinfo.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_devices.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_dma.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_dma.in: -------------------------------------------------------------------------------- 1 | 4: cascade 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_dma.out: -------------------------------------------------------------------------------- 1 | ($["cascade":4]) 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_dma.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_fb.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_fb.in: -------------------------------------------------------------------------------- 1 | 0 VESA VGA 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_fb.out: -------------------------------------------------------------------------------- 1 | ([$["fb":0, "type":["VESA", "VGA"]]]) 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_fb.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_filesystems.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_filesystems.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_interrupts.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_interrupts.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_ioports.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_ioports.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_meminfo.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_meminfo.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_misc.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_misc.in: -------------------------------------------------------------------------------- 1 | 1 psaux 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_misc.out: -------------------------------------------------------------------------------- 1 | ($["psaux":1]) 2 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/proc_misc.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (SCR::Read (.)); 3 | } 4 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/run_df.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-any/testsuite/tests/run_df.out: -------------------------------------------------------------------------------- 1 | ("OK, non-empty df") 2 | -------------------------------------------------------------------------------- /agent-dummy/.gitignore: -------------------------------------------------------------------------------- 1 | testsuite/y2ag_dummy 2 | -------------------------------------------------------------------------------- /agent-dummy/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/agent-dummy 3 | # 4 | 5 | SUBDIRS = conf doc src 6 | -------------------------------------------------------------------------------- /agent-dummy/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/conf/Makefile.am -------------------------------------------------------------------------------- /agent-dummy/conf/dummy.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/conf/dummy.scr -------------------------------------------------------------------------------- /agent-dummy/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/doc/Makefile.am -------------------------------------------------------------------------------- /agent-dummy/doc/ag_dummy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/doc/ag_dummy.html -------------------------------------------------------------------------------- /agent-dummy/src/DummyAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/src/DummyAgent.cc -------------------------------------------------------------------------------- /agent-dummy/src/DummyAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/src/DummyAgent.h -------------------------------------------------------------------------------- /agent-dummy/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/src/Makefile.am -------------------------------------------------------------------------------- /agent-dummy/src/Y2CCDummyAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-dummy/src/Y2CCDummyAgent.cc -------------------------------------------------------------------------------- /agent-ini/.gitignore: -------------------------------------------------------------------------------- 1 | testsuite/runag_ini 2 | -------------------------------------------------------------------------------- /agent-ini/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/MAINTAINER -------------------------------------------------------------------------------- /agent-ini/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/agent-ini 3 | # 4 | 5 | SUBDIRS = conf src doc testsuite 6 | -------------------------------------------------------------------------------- /agent-ini/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/conf/Makefile.am -------------------------------------------------------------------------------- /agent-ini/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/doc/Makefile.am -------------------------------------------------------------------------------- /agent-ini/doc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/doc/TODO.txt -------------------------------------------------------------------------------- /agent-ini/doc/ag_ini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/doc/ag_ini.html -------------------------------------------------------------------------------- /agent-ini/doc/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/doc/implementation.html -------------------------------------------------------------------------------- /agent-ini/src/.gitignore: -------------------------------------------------------------------------------- 1 | ag_ini 2 | -------------------------------------------------------------------------------- /agent-ini/src/IniAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniAgent.cc -------------------------------------------------------------------------------- /agent-ini/src/IniAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniAgent.h -------------------------------------------------------------------------------- /agent-ini/src/IniFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniFile.cc -------------------------------------------------------------------------------- /agent-ini/src/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniFile.h -------------------------------------------------------------------------------- /agent-ini/src/IniParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniParser.cc -------------------------------------------------------------------------------- /agent-ini/src/IniParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/IniParser.h -------------------------------------------------------------------------------- /agent-ini/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/Makefile.am -------------------------------------------------------------------------------- /agent-ini/src/Y2CCIniAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/Y2CCIniAgent.cc -------------------------------------------------------------------------------- /agent-ini/src/quotes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/quotes.cc -------------------------------------------------------------------------------- /agent-ini/src/quotes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/src/quotes.h -------------------------------------------------------------------------------- /agent-ini/testsuite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/.gitignore -------------------------------------------------------------------------------- /agent-ini/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/Makefile.am -------------------------------------------------------------------------------- /agent-ini/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | .*.swp 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg1.err -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg1.in: -------------------------------------------------------------------------------- 1 | Val1 = value11 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg1.out -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg1.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg1.scr -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg1.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg1.ycp -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg2.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg2.err -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg2.in: -------------------------------------------------------------------------------- 1 | Val1 = value11 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | Val1=value12 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg2.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg2.scr -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg2.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg2.ycp -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg3.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg3.err -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg3.in: -------------------------------------------------------------------------------- 1 | +Sub 2 | Val1 = value11 3 | -Sub 4 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg3.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | +Sub 3 | Val1=value12 4 | -Sub 5 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg3.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg3.scr -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/chg3.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/chg3.ycp -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/err1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/err1.err -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/err1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/err1.in -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/err1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/err1.out -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/err1.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/err1.scr -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/err1.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/debug/err1.ycp -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/write1.in: -------------------------------------------------------------------------------- 1 | Val1 = value11 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/write1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | Val1=changed 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/debug/write2.in: -------------------------------------------------------------------------------- 1 | Val1 = value11 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | .*.swp 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.err -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.in.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.in.1 -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.in.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.in.2 -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.in.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.in.3 -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.in.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.in.4 -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.out -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.scr -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/del.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/del.ycp -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/private.in.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/private.in.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/private.in.2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/private.in.3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/ro.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/ro.err -------------------------------------------------------------------------------- /agent-ini/testsuite/multi/ro.in.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/multi/ro.in.1 -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/add1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/chval.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment1.in: -------------------------------------------------------------------------------- 1 | Key=Value ;comment 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment1.out: -------------------------------------------------------------------------------- 1 | ([]) 2 | ;comment 3 | Key=Value 4 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment2.in: -------------------------------------------------------------------------------- 1 | Key=Value ;comment 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment2.out: -------------------------------------------------------------------------------- 1 | ([]) 2 | Key=Value ;comment 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment3.in: -------------------------------------------------------------------------------- 1 | ; 2 | ; leading comment 3 | ; 4 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment3.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | ; 3 | ; leading comment 4 | ; 5 | [Section] 6 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment4.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment4.out: -------------------------------------------------------------------------------- 1 | ([]) 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment5.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment5.out: -------------------------------------------------------------------------------- 1 | ([]) 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment6.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/comment6.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/del1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/globval1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icase1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icase2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icase3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icase4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icase5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/icreg1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/linecnt1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/multiline1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/multiline2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/n1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-ini/testsuite/tests/n1.in -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/nonex.in: -------------------------------------------------------------------------------- 1 | KEY=value 2 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/nonex.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | KEY=value 3 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/rc2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/rc4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/repeat.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/repeat_opt.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/subsec1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-ini/testsuite/tests/subsec5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-modules/.gitignore: -------------------------------------------------------------------------------- 1 | testsuite/runmodules 2 | -------------------------------------------------------------------------------- /agent-modules/MAINTAINER: -------------------------------------------------------------------------------- 1 | Michal Svec 2 | -------------------------------------------------------------------------------- /agent-modules/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/conf/Makefile.am -------------------------------------------------------------------------------- /agent-modules/conf/modules.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/conf/modules.scr -------------------------------------------------------------------------------- /agent-modules/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/doc/Makefile.am -------------------------------------------------------------------------------- /agent-modules/doc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/doc/TODO.txt -------------------------------------------------------------------------------- /agent-modules/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/src/Makefile.am -------------------------------------------------------------------------------- /agent-modules/src/ModulesConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/src/ModulesConf.h -------------------------------------------------------------------------------- /agent-modules/src/Y2Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-modules/src/Y2Logger.h -------------------------------------------------------------------------------- /agent-modules/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-modules/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-modules/testsuite/lib/ag_modules_init.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-modules/testsuite/tests/missing.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /agent-modules/testsuite/tests/missing.ycp: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /agent-modules/testsuite/tests/write3.in: -------------------------------------------------------------------------------- 1 | # file with only comments 2 | # 3 | -------------------------------------------------------------------------------- /agent-process/.gitignore: -------------------------------------------------------------------------------- 1 | doc/autodocs 2 | testsuite/run_ag_process 3 | -------------------------------------------------------------------------------- /agent-process/MAINTAINER: -------------------------------------------------------------------------------- 1 | Ladislav Slezák 2 | -------------------------------------------------------------------------------- /agent-process/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-process/conf/Makefile.am -------------------------------------------------------------------------------- /agent-process/conf/process.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-process/conf/process.scr -------------------------------------------------------------------------------- /agent-process/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-process/doc/Makefile.am -------------------------------------------------------------------------------- /agent-process/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-process/src/Makefile.am -------------------------------------------------------------------------------- /agent-process/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-process/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/C_locale.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/Dir.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/env.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/large_output.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/status.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/stderr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/stdout.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-process/testsuite/tests/tty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-resolver/Makefile.am: -------------------------------------------------------------------------------- 1 | # Makefile.am for core/agent-resolver 2 | 3 | SUBDIRS = conf doc src testsuite 4 | -------------------------------------------------------------------------------- /agent-resolver/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-resolver/conf/Makefile.am -------------------------------------------------------------------------------- /agent-resolver/conf/resolv.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-resolver/conf/resolv.scr -------------------------------------------------------------------------------- /agent-resolver/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-resolver/doc/Makefile.am -------------------------------------------------------------------------------- /agent-resolver/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-resolver/src/Makefile.am -------------------------------------------------------------------------------- /agent-resolver/testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | run_ag_process 2 | runresolver 3 | tests/*.scr 4 | -------------------------------------------------------------------------------- /agent-resolver/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-resolver/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-resolver/testsuite/lib/ag_resolver_init.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-resolver/testsuite/tests/write1.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/MAINTAINER -------------------------------------------------------------------------------- /agent-system/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/conf/Makefile.am -------------------------------------------------------------------------------- /agent-system/conf/target.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/conf/target.scr -------------------------------------------------------------------------------- /agent-system/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/doc/.gitignore -------------------------------------------------------------------------------- /agent-system/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/doc/Makefile.am -------------------------------------------------------------------------------- /agent-system/src/.gitignore: -------------------------------------------------------------------------------- 1 | ag_target 2 | -------------------------------------------------------------------------------- /agent-system/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/src/Makefile.am -------------------------------------------------------------------------------- /agent-system/src/ShellCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/src/ShellCommand.h -------------------------------------------------------------------------------- /agent-system/src/SystemAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/src/SystemAgent.cc -------------------------------------------------------------------------------- /agent-system/src/SystemAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agent-system/src/SystemAgent.h -------------------------------------------------------------------------------- /agent-system/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /agent-system/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/byte.write: -------------------------------------------------------------------------------- 1 | Software is like sex. It's better when it's free. 2 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/data1.read: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/data2.read: -------------------------------------------------------------------------------- 1 | Software is like sex. It's better when it's free. 2 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/remove.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/remove.out: -------------------------------------------------------------------------------- 1 | (true) 2 | (false) 3 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/size.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/size.out: -------------------------------------------------------------------------------- 1 | (0) 2 | (50) 3 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/stat.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/string.write: -------------------------------------------------------------------------------- 1 | Software is like sex. It's better when it's free. 2 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/tmpdir.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/tmpdir.out: -------------------------------------------------------------------------------- 1 | ("/tmp/YaST2-") 2 | -------------------------------------------------------------------------------- /agent-system/testsuite/tests/yast2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | ("never mind") 3 | -------------------------------------------------------------------------------- /agents-non-y2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-non-y2/Makefile.am -------------------------------------------------------------------------------- /agents-non-y2/ag_hostnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-non-y2/ag_hostnames -------------------------------------------------------------------------------- /agents-non-y2/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-non-y2/conf/Makefile.am -------------------------------------------------------------------------------- /agents-perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/Makefile.am -------------------------------------------------------------------------------- /agents-perl/ag_background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/ag_background -------------------------------------------------------------------------------- /agents-perl/ag_modinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/ag_modinfo -------------------------------------------------------------------------------- /agents-perl/ag_ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/ag_ping -------------------------------------------------------------------------------- /agents-perl/ag_yp_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/ag_yp_makefile -------------------------------------------------------------------------------- /agents-perl/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/conf/Makefile.am -------------------------------------------------------------------------------- /agents-perl/conf/background.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/conf/background.scr -------------------------------------------------------------------------------- /agents-perl/conf/modinfo.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/conf/modinfo.scr -------------------------------------------------------------------------------- /agents-perl/conf/ping.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/conf/ping.scr -------------------------------------------------------------------------------- /agents-perl/doc/.gitignore: -------------------------------------------------------------------------------- 1 | ycp-pm-pod.html 2 | pod*.tmp 3 | -------------------------------------------------------------------------------- /agents-perl/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/Makefile.am -------------------------------------------------------------------------------- /agents-perl/doc/ag_modinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/ag_modinfo.html -------------------------------------------------------------------------------- /agents-perl/doc/docu0perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu0perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu1perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu1perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu2perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu2perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu3perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu3perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu4perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu4perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu5perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu5perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu6perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu6perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/docu7perl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/docu7perl.htm -------------------------------------------------------------------------------- /agents-perl/doc/ycp-pm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/doc/ycp-pm.html -------------------------------------------------------------------------------- /agents-perl/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/lib/.gitignore -------------------------------------------------------------------------------- /agents-perl/lib/MANIFEST: -------------------------------------------------------------------------------- 1 | ycp.pm 2 | YaST/SCRAgent.pm 3 | -------------------------------------------------------------------------------- /agents-perl/lib/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/lib/Makefile.PL -------------------------------------------------------------------------------- /agents-perl/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/lib/Makefile.am -------------------------------------------------------------------------------- /agents-perl/lib/ycp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/lib/ycp.pm -------------------------------------------------------------------------------- /agents-perl/lib/ycp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/agents-perl/lib/ycp.test -------------------------------------------------------------------------------- /autodocs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/autodocs/.gitignore -------------------------------------------------------------------------------- /autodocs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/autodocs/Makefile.am -------------------------------------------------------------------------------- /base/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/MAINTAINER -------------------------------------------------------------------------------- /base/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/Makefile.am -------------------------------------------------------------------------------- /base/src/.gitignore: -------------------------------------------------------------------------------- 1 | scr_remote 2 | y2base 3 | *.log 4 | *.trs 5 | -------------------------------------------------------------------------------- /base/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/src/Makefile.am -------------------------------------------------------------------------------- /base/src/y2base-smoke-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/src/y2base-smoke-test -------------------------------------------------------------------------------- /base/src/y2base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/src/y2base.cc -------------------------------------------------------------------------------- /base/test-helper.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/test-helper.exp -------------------------------------------------------------------------------- /base/testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.trs 3 | -------------------------------------------------------------------------------- /base/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/testsuite/Makefile.am -------------------------------------------------------------------------------- /base/testsuite/data/toplevel/target_root: -------------------------------------------------------------------------------- 1 | BOOT_IMAGE=fbdev ro root=801 2 | -------------------------------------------------------------------------------- /base/testsuite/target_root.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/testsuite/target_root.ycp -------------------------------------------------------------------------------- /base/testsuite/y2base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/testsuite/y2base.sh -------------------------------------------------------------------------------- /base/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/Makefile.am -------------------------------------------------------------------------------- /base/tools/autorun/.gitignore: -------------------------------------------------------------------------------- 1 | md_autorun 2 | -------------------------------------------------------------------------------- /base/tools/autorun/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/autorun/Makefile.am -------------------------------------------------------------------------------- /base/tools/autorun/md_autorun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/autorun/md_autorun.c -------------------------------------------------------------------------------- /base/tools/devtools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/devtools/Makefile.am -------------------------------------------------------------------------------- /base/tools/elf-arch/.gitignore: -------------------------------------------------------------------------------- 1 | elf-arch 2 | -------------------------------------------------------------------------------- /base/tools/elf-arch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/elf-arch/Makefile.am -------------------------------------------------------------------------------- /base/tools/elf-arch/elf-arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/elf-arch/elf-arch.c -------------------------------------------------------------------------------- /base/tools/startshell/.gitignore: -------------------------------------------------------------------------------- 1 | startshell 2 | -------------------------------------------------------------------------------- /base/tools/tty_wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | tty_wrapper 2 | -------------------------------------------------------------------------------- /base/tools/ycpc/.gitignore: -------------------------------------------------------------------------------- 1 | ycpc 2 | doc/html 3 | -------------------------------------------------------------------------------- /base/tools/ycpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/ycpc/Makefile.am -------------------------------------------------------------------------------- /base/tools/ycpc/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/ycpc/doc/Makefile.am -------------------------------------------------------------------------------- /base/tools/ycpc/doc/ycpc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/ycpc/doc/ycpc.xml -------------------------------------------------------------------------------- /base/tools/ycpc/ybcdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/ycpc/ybcdump -------------------------------------------------------------------------------- /base/tools/ycpc/ycpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/base/tools/ycpc/ycpc.cc -------------------------------------------------------------------------------- /configure.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/configure.in.in -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/systemagent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/doc/systemagent.md -------------------------------------------------------------------------------- /libscr/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/MAINTAINER -------------------------------------------------------------------------------- /libscr/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/libscr 3 | # 4 | 5 | SUBDIRS = src doc testsuite 6 | -------------------------------------------------------------------------------- /libscr/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/doc/Makefile.am -------------------------------------------------------------------------------- /libscr/doc/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/doc/repository.png -------------------------------------------------------------------------------- /libscr/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/src/Makefile.am -------------------------------------------------------------------------------- /libscr/src/SCR.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/src/SCR.cc -------------------------------------------------------------------------------- /libscr/src/SCRAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/src/SCRAgent.cc -------------------------------------------------------------------------------- /libscr/src/include/scr/SCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/src/include/scr/SCR.h -------------------------------------------------------------------------------- /libscr/testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | runscr 2 | -------------------------------------------------------------------------------- /libscr/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/testsuite/Makefile.am -------------------------------------------------------------------------------- /libscr/testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/testsuite/README -------------------------------------------------------------------------------- /libscr/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /libscr/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /libscr/testsuite/runscr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libscr/testsuite/runscr.cc -------------------------------------------------------------------------------- /libscr/testsuite/tests/test0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libscr/testsuite/tests/test0.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libscr/testsuite/tests/test0.scr: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /liby2/.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liby2/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/MAINTAINER -------------------------------------------------------------------------------- /liby2/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/liby2 3 | # 4 | 5 | SUBDIRS = src testsuite 6 | -------------------------------------------------------------------------------- /liby2/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/doc/Makefile.am -------------------------------------------------------------------------------- /liby2/doc/componentcreator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/doc/componentcreator.txt -------------------------------------------------------------------------------- /liby2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Makefile.am -------------------------------------------------------------------------------- /liby2/src/SymbolEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/SymbolEntry.cc -------------------------------------------------------------------------------- /liby2/src/Y2CCPlugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2CCPlugin.cc -------------------------------------------------------------------------------- /liby2/src/Y2CCProgram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2CCProgram.cc -------------------------------------------------------------------------------- /liby2/src/Y2CCSerial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2CCSerial.cc -------------------------------------------------------------------------------- /liby2/src/Y2CCStdio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2CCStdio.cc -------------------------------------------------------------------------------- /liby2/src/Y2Component.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2Component.cc -------------------------------------------------------------------------------- /liby2/src/Y2ComponentBroker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2ComponentBroker.cc -------------------------------------------------------------------------------- /liby2/src/Y2ComponentCreator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2ComponentCreator.cc -------------------------------------------------------------------------------- /liby2/src/Y2ErrorComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2ErrorComponent.cc -------------------------------------------------------------------------------- /liby2/src/Y2LanguageLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2LanguageLoader.cc -------------------------------------------------------------------------------- /liby2/src/Y2Namespace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2Namespace.cc -------------------------------------------------------------------------------- /liby2/src/Y2PluginComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2PluginComponent.cc -------------------------------------------------------------------------------- /liby2/src/Y2ProgramComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2ProgramComponent.cc -------------------------------------------------------------------------------- /liby2/src/Y2SerialComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2SerialComponent.cc -------------------------------------------------------------------------------- /liby2/src/Y2StdioComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/Y2StdioComponent.cc -------------------------------------------------------------------------------- /liby2/src/genericfrontend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/genericfrontend.cc -------------------------------------------------------------------------------- /liby2/src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/include/Makefile.am -------------------------------------------------------------------------------- /liby2/src/include/Y2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/src/include/Y2.h -------------------------------------------------------------------------------- /liby2/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2/testsuite/Makefile.am -------------------------------------------------------------------------------- /liby2util-r/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=src testsuite 2 | -------------------------------------------------------------------------------- /liby2util-r/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/Makefile.am -------------------------------------------------------------------------------- /liby2util-r/src/MemUsage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/MemUsage.cc -------------------------------------------------------------------------------- /liby2util-r/src/PathInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/PathInfo.cc -------------------------------------------------------------------------------- /liby2util-r/src/Pathname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/Pathname.cc -------------------------------------------------------------------------------- /liby2util-r/src/Process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/Process.cc -------------------------------------------------------------------------------- /liby2util-r/src/Rep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/Rep.cc -------------------------------------------------------------------------------- /liby2util-r/src/Y2SLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/Y2SLog.cc -------------------------------------------------------------------------------- /liby2util-r/src/miniini.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/miniini.cc -------------------------------------------------------------------------------- /liby2util-r/src/stringutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/stringutil.cc -------------------------------------------------------------------------------- /liby2util-r/src/y2changes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/y2changes.cc -------------------------------------------------------------------------------- /liby2util-r/src/y2log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/liby2util-r/src/y2log.cc -------------------------------------------------------------------------------- /liby2util-r/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /liby2util-r/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /liby2util-r/testsuite/liby2util.test/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = liby2util.exp 2 | -------------------------------------------------------------------------------- /liby2util-r/testsuite/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = urls *.out 2 | -------------------------------------------------------------------------------- /libycp/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/MAINTAINER -------------------------------------------------------------------------------- /libycp/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/libycp 3 | # 4 | 5 | SUBDIRS = src doc testsuite 6 | -------------------------------------------------------------------------------- /libycp/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/.gitignore -------------------------------------------------------------------------------- /libycp/doc/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/Changes -------------------------------------------------------------------------------- /libycp/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/libycp/doc 3 | # 4 | 5 | -------------------------------------------------------------------------------- /libycp/doc/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ToDo -------------------------------------------------------------------------------- /libycp/doc/YCP-operators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/YCP-operators.xml -------------------------------------------------------------------------------- /libycp/doc/builtins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/builtins.xml -------------------------------------------------------------------------------- /libycp/doc/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/changes.html -------------------------------------------------------------------------------- /libycp/doc/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/logging.html -------------------------------------------------------------------------------- /libycp/doc/logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/logging.xml -------------------------------------------------------------------------------- /libycp/doc/ycp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/Makefile.am -------------------------------------------------------------------------------- /libycp/doc/ycp/customize-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/customize-fo.xsl -------------------------------------------------------------------------------- /libycp/doc/ycp/examples/hello_world_1.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return "Hello, world !\n"; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/doc/ycp/header.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/header.xsl -------------------------------------------------------------------------------- /libycp/doc/ycp/introduction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/introduction.xml -------------------------------------------------------------------------------- /libycp/doc/ycp/language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/language.xml -------------------------------------------------------------------------------- /libycp/doc/ycp/language/Types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/language/Types -------------------------------------------------------------------------------- /libycp/doc/ycp/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/layout.txt -------------------------------------------------------------------------------- /libycp/doc/ycp/usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/usage.xml -------------------------------------------------------------------------------- /libycp/doc/ycp/ycp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/doc/ycp/ycp.xml -------------------------------------------------------------------------------- /libycp/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/.gitignore -------------------------------------------------------------------------------- /libycp/src/Bytecode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Bytecode.cc -------------------------------------------------------------------------------- /libycp/src/Import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Import.cc -------------------------------------------------------------------------------- /libycp/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Makefile.am -------------------------------------------------------------------------------- /libycp/src/Parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Parser.cc -------------------------------------------------------------------------------- /libycp/src/Point.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Point.cc -------------------------------------------------------------------------------- /libycp/src/Scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Scanner.cc -------------------------------------------------------------------------------- /libycp/src/StaticDeclaration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/StaticDeclaration.cc -------------------------------------------------------------------------------- /libycp/src/SymbolTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/SymbolTable.cc -------------------------------------------------------------------------------- /libycp/src/Type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Type.cc -------------------------------------------------------------------------------- /libycp/src/TypeStatics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/TypeStatics.cc -------------------------------------------------------------------------------- /libycp/src/Xmlcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/Xmlcode.cc -------------------------------------------------------------------------------- /libycp/src/YBlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YBlock.cc -------------------------------------------------------------------------------- /libycp/src/YBuiltin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YBuiltin.cc -------------------------------------------------------------------------------- /libycp/src/YCPBoolean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBoolean.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinBoolean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinBoolean.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinFloat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinFloat.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinInteger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinInteger.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinList.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinMap.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinMisc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinMisc.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinPath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinPath.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinString.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinString.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinSymbol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinSymbol.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinTerm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinTerm.cc -------------------------------------------------------------------------------- /libycp/src/YCPBuiltinVoid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPBuiltinVoid.cc -------------------------------------------------------------------------------- /libycp/src/YCPByteblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPByteblock.cc -------------------------------------------------------------------------------- /libycp/src/YCPCode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPCode.cc -------------------------------------------------------------------------------- /libycp/src/YCPElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPElement.cc -------------------------------------------------------------------------------- /libycp/src/YCPExternal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPExternal.cc -------------------------------------------------------------------------------- /libycp/src/YCPFloat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPFloat.cc -------------------------------------------------------------------------------- /libycp/src/YCPInteger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPInteger.cc -------------------------------------------------------------------------------- /libycp/src/YCPList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPList.cc -------------------------------------------------------------------------------- /libycp/src/YCPMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPMap.cc -------------------------------------------------------------------------------- /libycp/src/YCPPath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPPath.cc -------------------------------------------------------------------------------- /libycp/src/YCPString.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPString.cc -------------------------------------------------------------------------------- /libycp/src/YCPSymbol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPSymbol.cc -------------------------------------------------------------------------------- /libycp/src/YCPTerm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPTerm.cc -------------------------------------------------------------------------------- /libycp/src/YCPValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPValue.cc -------------------------------------------------------------------------------- /libycp/src/YCPVoid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCPVoid.cc -------------------------------------------------------------------------------- /libycp/src/YCode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YCode.cc -------------------------------------------------------------------------------- /libycp/src/YExpression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YExpression.cc -------------------------------------------------------------------------------- /libycp/src/YStatement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YStatement.cc -------------------------------------------------------------------------------- /libycp/src/YSymbolEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/YSymbolEntry.cc -------------------------------------------------------------------------------- /libycp/src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/Makefile.am -------------------------------------------------------------------------------- /libycp/src/include/YCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/YCP.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/Import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/Import.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/Parser.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/Point.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/Type.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/YBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/YBlock.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/YCPMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/YCPMap.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/YCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/YCode.h -------------------------------------------------------------------------------- /libycp/src/include/ycp/y2log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/include/ycp/y2log.h -------------------------------------------------------------------------------- /libycp/src/parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/parser.yy -------------------------------------------------------------------------------- /libycp/src/pathsearch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/pathsearch.cc -------------------------------------------------------------------------------- /libycp/src/scanner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/scanner.ll -------------------------------------------------------------------------------- /libycp/src/y2string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/src/y2string.cc -------------------------------------------------------------------------------- /libycp/testsuite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/.gitignore -------------------------------------------------------------------------------- /libycp/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/Makefile.am -------------------------------------------------------------------------------- /libycp/testsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/README.md -------------------------------------------------------------------------------- /libycp/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /libycp/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /libycp/testsuite/differr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/differr -------------------------------------------------------------------------------- /libycp/testsuite/diffout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/diffout -------------------------------------------------------------------------------- /libycp/testsuite/hashcheck.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/hashcheck.cc -------------------------------------------------------------------------------- /libycp/testsuite/mkdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/mkdata.sh -------------------------------------------------------------------------------- /libycp/testsuite/mverr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/mverr -------------------------------------------------------------------------------- /libycp/testsuite/mvout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/mvout -------------------------------------------------------------------------------- /libycp/testsuite/review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/review -------------------------------------------------------------------------------- /libycp/testsuite/runc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/runc.cc -------------------------------------------------------------------------------- /libycp/testsuite/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/runtest.sh -------------------------------------------------------------------------------- /libycp/testsuite/runycp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/runycp.cc -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Backtrace.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin-List1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin-Return.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin-Symbol.out: -------------------------------------------------------------------------------- 1 | ("** tosymbol **") 2 | (`test) 3 | (nil) 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin-remove.out: -------------------------------------------------------------------------------- 1 | ($[]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin1.out: -------------------------------------------------------------------------------- 1 | ((1 + 2)) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin10.out: -------------------------------------------------------------------------------- 1 | (true) 2 | ("test case prepend for list finished") 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin7.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin7.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/Builtin_V.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/builtin_redeclared.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/manyparams.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/builtin/sformat.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Identifier.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Identifier2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/ImpInc.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Module0.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/NameOfModule.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/NameOfModuleConst.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Namespace.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Rec.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Self.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/Summary.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/module1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Module/modulec.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/Namespace1.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/Namespace3.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/identifier2i.out: -------------------------------------------------------------------------------- 1 | [2, 55, 42] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/impinc1.out: -------------------------------------------------------------------------------- 1 | nil -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/impinc2.out: -------------------------------------------------------------------------------- 1 | nil -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/module0i.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/module1i.out: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/moduleci.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/nameofmodule1.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/Xmodules/nameofmodule3.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/bool-false.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/bool-true.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/byteblock-empty.out: -------------------------------------------------------------------------------- 1 | #[] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/byteblock.out: -------------------------------------------------------------------------------- 1 | #[00112233445566778899AABBCCDDEEFF] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/float.out: -------------------------------------------------------------------------------- 1 | 3.14159 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/integer.out: -------------------------------------------------------------------------------- 1 | 1234567890 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/list-empty.out: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/list-list.out: -------------------------------------------------------------------------------- 1 | [[]] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/list-one.out: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/list-two.out: -------------------------------------------------------------------------------- 1 | [true, false] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/list.out: -------------------------------------------------------------------------------- 1 | [1, 2, 3, 4, 5] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/locale.out: -------------------------------------------------------------------------------- 1 | "This is a test" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/map-empty.out: -------------------------------------------------------------------------------- 1 | $[] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/map-one.out: -------------------------------------------------------------------------------- 1 | $[1:true] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/map-two.out: -------------------------------------------------------------------------------- 1 | $[1:true, 2:false] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/nil.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/path-empty.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/path.out: -------------------------------------------------------------------------------- 1 | .a.b.c.d.e."f.g.h".i 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/string-empty.out: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/string.out: -------------------------------------------------------------------------------- 1 | "Hello, world !" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/symbol.out: -------------------------------------------------------------------------------- 1 | `JustATest 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/constants/void.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/addition.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/and.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/division.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/eq.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/functionptr.out: -------------------------------------------------------------------------------- 1 | [nil, "Afun"] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/ge.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/gt.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/le.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/listexpr.out: -------------------------------------------------------------------------------- 1 | [2, 4, 6, 8] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/localeexpr.out: -------------------------------------------------------------------------------- 1 | "With number" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/lt.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/mapexpr.out: -------------------------------------------------------------------------------- 1 | $[2:"aa", 4:"bb", 6:"cc"] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/multiplication.out: -------------------------------------------------------------------------------- 1 | 2898 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/ne.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/not.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/or.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/subtraction.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/expressions/triple.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Identifier.out: -------------------------------------------------------------------------------- 1 | [2, 1, 42] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Namespace2a.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Namespace2c.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Rec.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Self.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/imports/Summary.out: -------------------------------------------------------------------------------- 1 | "not configured yet" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/statements/assignment.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode-compatibility/9.1/statements/variable-single.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Identifier.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Identifier2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/ImpInc.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Module0.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/NameOfModule.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/NameOfModuleConst.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Namespace.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Rec.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Self.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/Summary.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/module1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Module/modulec.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/ImpInc.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/Namespace1.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/Namespace3.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/identifier2i.out: -------------------------------------------------------------------------------- 1 | [2, 55, 42] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/impinc1.out: -------------------------------------------------------------------------------- 1 | nil -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/impinc2.out: -------------------------------------------------------------------------------- 1 | nil -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/module0i.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/module1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/module1i.out: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/moduleci.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/nameofmodule1.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/Xmodules/nameofmodule3.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/bool-false.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/bool-false.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return false; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/bool-true.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/bool-true.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return true; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/byteblock-empty.out: -------------------------------------------------------------------------------- 1 | #[] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/byteblock-empty.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return #[]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/byteblock.out: -------------------------------------------------------------------------------- 1 | #[00112233445566778899AABBCCDDEEFF] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/float.out: -------------------------------------------------------------------------------- 1 | 3.14159 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/float.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 3.14159; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/integer.out: -------------------------------------------------------------------------------- 1 | 1234567890 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/integer.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 1234567890; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-empty.out: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-empty.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return []; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-list.out: -------------------------------------------------------------------------------- 1 | [[]] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-list.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return [[]]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-one.out: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-one.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return [true]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-two.out: -------------------------------------------------------------------------------- 1 | [true, false] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list-two.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return [true, false]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list.out: -------------------------------------------------------------------------------- 1 | [1, 2, 3, 4, 5] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/list.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return [1, 2, 3, 4, 5]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/locale.out: -------------------------------------------------------------------------------- 1 | "This is a test" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-empty.out: -------------------------------------------------------------------------------- 1 | $[] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-empty.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return $[]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-one.out: -------------------------------------------------------------------------------- 1 | $[1:true] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-one.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return $[1:true]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-two.out: -------------------------------------------------------------------------------- 1 | $[1:true, 2:false] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/map-two.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return $[1:true, 2:false]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/nil.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/nil.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return nil; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/path-empty.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/path-empty.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return .; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/path.out: -------------------------------------------------------------------------------- 1 | .a.b.c.d.e."f.g.h".i 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/path.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return .a.b.c.d.e."f.g.h".i; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/string-empty.out: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/string-empty.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return ""; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/string.out: -------------------------------------------------------------------------------- 1 | "Hello, world !" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/string.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return "Hello, world !"; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/symbol.out: -------------------------------------------------------------------------------- 1 | `JustATest 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/symbol.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return `JustATest; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/void.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/constants/void.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/addition.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/addition.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 1 + 1; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/and.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/and.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return true && false; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/division.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/division.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 96 / 42; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/eq.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/functionptr.out: -------------------------------------------------------------------------------- 1 | [nil, "Afun"] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/ge.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/ge.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 69 >= 42; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/gt.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/gt.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 69 > 42; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/le.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/le.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 42 <= 69; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/listexpr.out: -------------------------------------------------------------------------------- 1 | [2, 4, 6, 8] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/localeexpr.out: -------------------------------------------------------------------------------- 1 | "With number" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/lt.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/lt.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 42 < 69; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/mapexpr.out: -------------------------------------------------------------------------------- 1 | $[2:"aa", 4:"bb", 6:"cc"] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/multiplication.out: -------------------------------------------------------------------------------- 1 | 2898 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/multiplication.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 42 * 69; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/ne.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/ne.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 42 != 69; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/not.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/not.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return !(42 > 69); 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/or.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/or.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return true || false; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/subtraction.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/subtraction.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return 1 - 1; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/triple.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/expressions/triple.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return (1 < 2) ? true : false; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Identifier.out: -------------------------------------------------------------------------------- 1 | [2, 1, 42] 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Namespace2a.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Namespace2c.out: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Rec.out: -------------------------------------------------------------------------------- 1 | nil 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Self.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/imports/Summary.out: -------------------------------------------------------------------------------- 1 | "not configured yet" 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/statements/assignment.out: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/bytecode/statements/variable-single.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/BadAssignment.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/BadCode.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/DuplParam.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications.out: -------------------------------------------------------------------------------- 1 | ("NON-TERMINAL YCP_DeclTerm") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications10.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications4.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications5.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications6.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications7.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications8.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/Notifications9.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/pathbug.out: -------------------------------------------------------------------------------- 1 | (.a.b) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/stack-overflow.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/errors/termbug.out: -------------------------------------------------------------------------------- 1 | (`VBox (`VSpacing (1))) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Bracket-typeerror.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Formatted1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Formatted2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Formatted3.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Haskey.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Haskey1.out: -------------------------------------------------------------------------------- 1 | (false) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix1.ycp: -------------------------------------------------------------------------------- 1 | // infix expressions 2 | 3 | ( 4 | [true] 5 | ?"a":1) 6 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix2.ycp: -------------------------------------------------------------------------------- 1 | // infix expressions 2 | 3 | ( 4 | $[1:true] 5 | ?"a":1) 6 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix3.out: -------------------------------------------------------------------------------- 1 | (-1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Infix3.ycp: -------------------------------------------------------------------------------- 1 | // infix expressions 2 | 3 | (-1) 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Is.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Is2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/IsFunctionPtr.out: -------------------------------------------------------------------------------- 1 | ("GOOD") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Plus.out: -------------------------------------------------------------------------------- 1 | (2) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/ShortEval.out: -------------------------------------------------------------------------------- 1 | (true) 2 | (false) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/Triple2.out: -------------------------------------------------------------------------------- 1 | (2) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/bracket_default_function.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/comma.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/namespace_scanner.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/recursion-builtin.out: -------------------------------------------------------------------------------- 1 | (["aaa"]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/recursion-builtin2.out: -------------------------------------------------------------------------------- 1 | (["aaa"]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/expressions/uninitialized.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/include.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/include1.out: -------------------------------------------------------------------------------- 1 | (42) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/include2.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/include3.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/noblock_include1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/includes/noblock_include2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/complex_is.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_blockreturn42_blockinteger.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_blockreturn_blockvoid.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_blockreturn_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_false_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_float_int.out: -------------------------------------------------------------------------------- 1 | (false) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_float_int.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return is (3.14, integer); 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_function.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_function_reverse.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_int_float.out: -------------------------------------------------------------------------------- 1 | (false) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_int_float.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return is (42, float); 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_intvarint_int.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_intvarint_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_intvarnil_int.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_intvarnil_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_list_any.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_list_any.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return is ([0], any) == true; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_listmixed_boolean.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_nil_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_nil_void.ycp: -------------------------------------------------------------------------------- 1 | { 2 | return is (nil, void) == true; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_return42_integer.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_return42_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/is_return_void.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/list_is.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/is/list_is1.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/BadModule.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/ImpSelf.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/NestedImport.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/circularm1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/circularm2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/embedded.out: -------------------------------------------------------------------------------- 1 | (2) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/emptyModule.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/nameofmoduleconst.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/nested.out: -------------------------------------------------------------------------------- 1 | ("ba1ca1") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/rec.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/symbolic.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-double_module.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-identifier1-nested.out: -------------------------------------------------------------------------------- 1 | ([55, 42]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-identifier1.out: -------------------------------------------------------------------------------- 1 | ([55, 42]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-impinc1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-impinc2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-impself.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-module0i.out: -------------------------------------------------------------------------------- 1 | (2) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-module1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-module1i.out: -------------------------------------------------------------------------------- 1 | (43) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-moduleci.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-modulei1.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-modulei2.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/modules/y-modulei3.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Declaration1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Declaration2.out: -------------------------------------------------------------------------------- 1 | ([42, nil]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Define1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/GlobalSymbols.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/GlobalSymbols2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/GlobalSymbols3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/GlobalSymbols4.out: -------------------------------------------------------------------------------- 1 | (0) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Namespace2i.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Namespace2ii.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Nested.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/NestedFunctions.out: -------------------------------------------------------------------------------- 1 | (45) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/NestedVariables.out: -------------------------------------------------------------------------------- 1 | (2) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope1.out: -------------------------------------------------------------------------------- 1 | (4) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope3.out: -------------------------------------------------------------------------------- 1 | (0) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope4.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope5.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope6.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope7.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/Scope8.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/ScopeBad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/ScopeBad1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/ScopeGood.out: -------------------------------------------------------------------------------- 1 | (4) 2 | ("") 3 | (0) 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/scope/paramcheck.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Break1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Break2.out: -------------------------------------------------------------------------------- 1 | ([nil, 46, nil]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Break3.out: -------------------------------------------------------------------------------- 1 | ([42, 4, 42]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Continue.out: -------------------------------------------------------------------------------- 1 | (5) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/D_IfThenElse.out: -------------------------------------------------------------------------------- 1 | ("NON-TERMINAL if_then_else") 2 | (1) 3 | (2) 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Deep_Quote.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Deep_Quote1.out: -------------------------------------------------------------------------------- 1 | ((8 + 5)) 2 | (`Time) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Default.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Do-While-Continue.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Doublequote.out: -------------------------------------------------------------------------------- 1 | ((1 + 2)) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If.out: -------------------------------------------------------------------------------- 1 | (1) 2 | (2) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If1.ycp: -------------------------------------------------------------------------------- 1 | { 2 | if (1) 3 | return; 4 | } 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If2.ycp: -------------------------------------------------------------------------------- 1 | { 2 | if (false) 3 | integer i = 1; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/If4.out: -------------------------------------------------------------------------------- 1 | (2) 2 | (2) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IfThenElse1.out: -------------------------------------------------------------------------------- 1 | (6) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IfThenElse2.out: -------------------------------------------------------------------------------- 1 | (6) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IfThenElse3.out: -------------------------------------------------------------------------------- 1 | (7) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IfThenElse4.out: -------------------------------------------------------------------------------- 1 | (7) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IfThenElse5.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/IntermediateStructure.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Repeat-Until-Continue.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/SideEffect.out: -------------------------------------------------------------------------------- 1 | ([2, 2]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch1.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch1.ycp: -------------------------------------------------------------------------------- 1 | { 2 | switch (0) { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch2.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch3.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch4.out: -------------------------------------------------------------------------------- 1 | (-1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch5.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/Switch6.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/SymbolDeclaration.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/While-Continue.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/While.out: -------------------------------------------------------------------------------- 1 | (true) 2 | (nil) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/While1.out: -------------------------------------------------------------------------------- 1 | (10) 2 | (nil) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/While2.out: -------------------------------------------------------------------------------- 1 | (9) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/While3.out: -------------------------------------------------------------------------------- 1 | (10) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/deep_recursion.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/dquoted-return.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/empty_body.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/empty_body2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/endless.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/endless1.out: -------------------------------------------------------------------------------- 1 | ([11, 1]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/foreach_continue.out: -------------------------------------------------------------------------------- 1 | (["1", "3"]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/if_empty.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/loop.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/nested_return.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/nested_return_list.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/nested_return_map.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/statements/textdomain.out: -------------------------------------------------------------------------------- 1 | ("second domain") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/Bracket-reference.out: -------------------------------------------------------------------------------- 1 | ($["foo":"bar"]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/Bracket-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/Events.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/Typedef2.out: -------------------------------------------------------------------------------- 1 | (2) 2 | ([3.14]) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/any-template.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/blocktype.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bracket.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bracket3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bracketcast.out: -------------------------------------------------------------------------------- 1 | ("foo") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bug34249.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bug38375.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/bug47659.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/cast-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/complex.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const2.out: -------------------------------------------------------------------------------- 1 | (42) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const_list1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const_list2.out: -------------------------------------------------------------------------------- 1 | (42) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/const_reference.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/crash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/foreach.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/functionassign.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/functionpointer.out: -------------------------------------------------------------------------------- 1 | (1) 2 | (42) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/functionpointer2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/functionpointer3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/funptr_is.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/listmapcrash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/listmapcrash.ycp: -------------------------------------------------------------------------------- 1 | { 2 | list( map ) a = [ {} ]; 3 | } 4 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/lookup.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/map_is.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/matchtype2.out: -------------------------------------------------------------------------------- 1 | ([true]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/mismatch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/nillist.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/no-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/not_a_function.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/parameter.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/propagation1.out: -------------------------------------------------------------------------------- 1 | (1.) 2 | (1) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/propagation2.out: -------------------------------------------------------------------------------- 1 | ([2., 3.]) 2 | ([4, 5]) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/propagation3.out: -------------------------------------------------------------------------------- 1 | ("a") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/propagation4.out: -------------------------------------------------------------------------------- 1 | ("a") 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/propagation5.out: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype.out: -------------------------------------------------------------------------------- 1 | (42) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype1.out: -------------------------------------------------------------------------------- 1 | (42) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype4.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype5.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/prototype6.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/refany_integer.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/refany_string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference.out: -------------------------------------------------------------------------------- 1 | ([2, 2]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference2.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference4.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/reference5.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/returntype.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/type_bitshift.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/types/typecodes.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/Block.out: -------------------------------------------------------------------------------- 1 | (1) 2 | (2) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/List2.out: -------------------------------------------------------------------------------- 1 | (["a nil list should not crash on add:", nil]) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/Locale1.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/MultilineString.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/PathErr1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/PathErr2.out: -------------------------------------------------------------------------------- 1 | (.dash.behind) 2 | (.) 3 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/PathErr3.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/StringMultiline.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/tests/values/StringMultiline1.out: -------------------------------------------------------------------------------- 1 | (true) 2 | -------------------------------------------------------------------------------- /libycp/testsuite/testscope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/testscope.cc -------------------------------------------------------------------------------- /libycp/testsuite/xfail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/libycp/testsuite/xfail -------------------------------------------------------------------------------- /package/yast2-core.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/package/yast2-core.changes -------------------------------------------------------------------------------- /package/yast2-core.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/package/yast2-core.spec -------------------------------------------------------------------------------- /scr/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/MAINTAINER -------------------------------------------------------------------------------- /scr/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/scr 3 | # 4 | 5 | SUBDIRS = src testsuite 6 | -------------------------------------------------------------------------------- /scr/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/.gitignore -------------------------------------------------------------------------------- /scr/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/Makefile.am -------------------------------------------------------------------------------- /scr/doc/SCR-additional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/SCR-additional.html -------------------------------------------------------------------------------- /scr/doc/SCR.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/SCR.html.in -------------------------------------------------------------------------------- /scr/doc/intro_to_scr.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/intro_to_scr.html.in -------------------------------------------------------------------------------- /scr/doc/scr-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/scr-arch.png -------------------------------------------------------------------------------- /scr/doc/scr-arch.sda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/scr-arch.sda -------------------------------------------------------------------------------- /scr/doc/scr-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/scr-tree.png -------------------------------------------------------------------------------- /scr/doc/scr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/scr.txt -------------------------------------------------------------------------------- /scr/doc/scripting-agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/scripting-agent.txt -------------------------------------------------------------------------------- /scr/doc/unloading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/doc/unloading.html -------------------------------------------------------------------------------- /scr/src/.gitignore: -------------------------------------------------------------------------------- 1 | scr 2 | -------------------------------------------------------------------------------- /scr/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/Makefile.am -------------------------------------------------------------------------------- /scr/src/SCRSubAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/SCRSubAgent.cc -------------------------------------------------------------------------------- /scr/src/SCRSubAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/SCRSubAgent.h -------------------------------------------------------------------------------- /scr/src/ScriptingAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/ScriptingAgent.cc -------------------------------------------------------------------------------- /scr/src/ScriptingAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/ScriptingAgent.h -------------------------------------------------------------------------------- /scr/src/Y2CCSCR.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/Y2CCSCR.cc -------------------------------------------------------------------------------- /scr/src/Y2CCSCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/Y2CCSCR.h -------------------------------------------------------------------------------- /scr/src/Y2SCRComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/Y2SCRComponent.cc -------------------------------------------------------------------------------- /scr/src/Y2SCRComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/src/Y2SCRComponent.h -------------------------------------------------------------------------------- /scr/testsuite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/.gitignore -------------------------------------------------------------------------------- /scr/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/Makefile.am -------------------------------------------------------------------------------- /scr/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /scr/testsuite/config/unix.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/config/unix.exp -------------------------------------------------------------------------------- /scr/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /scr/testsuite/differr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/differr -------------------------------------------------------------------------------- /scr/testsuite/diffout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/diffout -------------------------------------------------------------------------------- /scr/testsuite/lib/scr_init.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scr/testsuite/runscr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/runscr.cc -------------------------------------------------------------------------------- /scr/testsuite/scr.test/scr.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/scr.test/scr.exp -------------------------------------------------------------------------------- /scr/testsuite/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/Makefile.am -------------------------------------------------------------------------------- /scr/testsuite/tests/dir.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scr/testsuite/tests/dir.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/dir.out -------------------------------------------------------------------------------- /scr/testsuite/tests/dir.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/dir.ycp -------------------------------------------------------------------------------- /scr/testsuite/tests/direct.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scr/testsuite/tests/direct.out: -------------------------------------------------------------------------------- 1 | ("hihi") 2 | -------------------------------------------------------------------------------- /scr/testsuite/tests/direct.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/direct.ycp -------------------------------------------------------------------------------- /scr/testsuite/tests/error.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/error.err -------------------------------------------------------------------------------- /scr/testsuite/tests/error.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /scr/testsuite/tests/error.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/error.scr -------------------------------------------------------------------------------- /scr/testsuite/tests/error.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/error.ycp -------------------------------------------------------------------------------- /scr/testsuite/tests/haha.scr: -------------------------------------------------------------------------------- 1 | . 2 | 3 | `ag_dummy ( 4 | `DataMap ($["a":"haha"], 0) 5 | ) 6 | -------------------------------------------------------------------------------- /scr/testsuite/tests/hihi.scr: -------------------------------------------------------------------------------- 1 | . 2 | 3 | `ag_dummy ( 4 | `DataMap ($["a":"hihi"], 0) 5 | ) 6 | -------------------------------------------------------------------------------- /scr/testsuite/tests/huhu.scr: -------------------------------------------------------------------------------- 1 | . 2 | 3 | `ag_dummy ( 4 | `DataMap ($["a":"huhu"], 0) 5 | ) 6 | -------------------------------------------------------------------------------- /scr/testsuite/tests/order.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/order.err -------------------------------------------------------------------------------- /scr/testsuite/tests/order.out: -------------------------------------------------------------------------------- 1 | (["haha", "hihi"]) 2 | -------------------------------------------------------------------------------- /scr/testsuite/tests/order.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/order.ycp -------------------------------------------------------------------------------- /scr/testsuite/tests/overload.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scr/testsuite/tests/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/runtest.sh -------------------------------------------------------------------------------- /scr/testsuite/tests/simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scr/testsuite/tests/simple.out: -------------------------------------------------------------------------------- 1 | ("hihi") 2 | -------------------------------------------------------------------------------- /scr/testsuite/tests/simple.scr: -------------------------------------------------------------------------------- 1 | . 2 | 3 | `ag_dummy ( 4 | `DataMap ($["a":"hihi"], 0) 5 | ) 6 | -------------------------------------------------------------------------------- /scr/testsuite/tests/simple.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/scr/testsuite/tests/simple.ycp -------------------------------------------------------------------------------- /wfm/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/MAINTAINER -------------------------------------------------------------------------------- /wfm/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # Makefile.am for core/wfm 3 | # 4 | 5 | SUBDIRS = src doc testsuite 6 | -------------------------------------------------------------------------------- /wfm/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/doc/.gitignore -------------------------------------------------------------------------------- /wfm/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | # Makefile.am for core/wfm/doc 2 | 3 | SUBDIRS = 4 | -------------------------------------------------------------------------------- /wfm/doc/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/doc/callback.html -------------------------------------------------------------------------------- /wfm/doc/dataflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/doc/dataflow.html -------------------------------------------------------------------------------- /wfm/doc/many-scr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/doc/many-scr.txt -------------------------------------------------------------------------------- /wfm/doc/wfm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/doc/wfm.xml -------------------------------------------------------------------------------- /wfm/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/.gitignore -------------------------------------------------------------------------------- /wfm/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/Makefile.am -------------------------------------------------------------------------------- /wfm/src/WFM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/WFM.cc -------------------------------------------------------------------------------- /wfm/src/WFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/WFM.h -------------------------------------------------------------------------------- /wfm/src/WFMSubAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/WFMSubAgent.cc -------------------------------------------------------------------------------- /wfm/src/WFMSubAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/WFMSubAgent.h -------------------------------------------------------------------------------- /wfm/src/Y2CCWFM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/Y2CCWFM.cc -------------------------------------------------------------------------------- /wfm/src/Y2CCWFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/Y2CCWFM.h -------------------------------------------------------------------------------- /wfm/src/Y2WFMComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/Y2WFMComponent.cc -------------------------------------------------------------------------------- /wfm/src/Y2WFMComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/src/Y2WFMComponent.h -------------------------------------------------------------------------------- /wfm/testsuite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/.gitignore -------------------------------------------------------------------------------- /wfm/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/Makefile.am -------------------------------------------------------------------------------- /wfm/testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/README -------------------------------------------------------------------------------- /wfm/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | # default.exp -- empty 2 | 3 | -------------------------------------------------------------------------------- /wfm/testsuite/config/unix.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/config/unix.exp -------------------------------------------------------------------------------- /wfm/testsuite/config/unknown.exp: -------------------------------------------------------------------------------- 1 | perror "No setup for current configuration" 2 | exit 1 3 | -------------------------------------------------------------------------------- /wfm/testsuite/lib/wfm_init.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/lib/wfm_init.exp -------------------------------------------------------------------------------- /wfm/testsuite/modules/Mode.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/modules/Mode.ycp -------------------------------------------------------------------------------- /wfm/testsuite/runc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/runc.cc -------------------------------------------------------------------------------- /wfm/testsuite/runwfm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/runwfm.cc -------------------------------------------------------------------------------- /wfm/testsuite/tests/IncludeLog.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/Makefile.am -------------------------------------------------------------------------------- /wfm/testsuite/tests/default.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/default.out: -------------------------------------------------------------------------------- 1 | ([0]) 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/default.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/default.ycp -------------------------------------------------------------------------------- /wfm/testsuite/tests/empty.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/empty.err -------------------------------------------------------------------------------- /wfm/testsuite/tests/empty.out: -------------------------------------------------------------------------------- 1 | (nil) 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/empty.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/empty.ycp -------------------------------------------------------------------------------- /wfm/testsuite/tests/language.err: -------------------------------------------------------------------------------- 1 | [wfm] Y2WFMComponent.cc(SetLanguage):XXX SET encoding to: UTF-8 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/language.out: -------------------------------------------------------------------------------- 1 | ("cs_CZ") 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/runtest.sh -------------------------------------------------------------------------------- /wfm/testsuite/tests/scrname.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/scrname.out: -------------------------------------------------------------------------------- 1 | (["scr"]) 2 | -------------------------------------------------------------------------------- /wfm/testsuite/tests/scrname.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/tests/scrname.ycp -------------------------------------------------------------------------------- /wfm/testsuite/wfm.test/wfm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/wfm/testsuite/wfm.test/wfm.exp -------------------------------------------------------------------------------- /wfm/testsuite/y2wfm.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yast2-core.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yast2-core.pc.in -------------------------------------------------------------------------------- /yml/MAINTAINER: -------------------------------------------------------------------------------- 1 | Jens Daniel Schmidt 2 | -------------------------------------------------------------------------------- /yml/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yml/src/Makefile -------------------------------------------------------------------------------- /yml/src/YMLparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yml/src/YMLparser.cc -------------------------------------------------------------------------------- /yml/src/test/minitest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yml/src/test/minitest.xml -------------------------------------------------------------------------------- /yml/src/test/y2test.ycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yml/src/test/y2test.ycp -------------------------------------------------------------------------------- /yml/src/test/yml-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yast/yast-core/HEAD/yml/src/test/yml-test.xml --------------------------------------------------------------------------------