├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ccpp.yml │ └── shellcheck-all.yml ├── .gitignore ├── COPYING ├── Makefile.am ├── README ├── README.md ├── autogen.sh ├── compile_flags.txt ├── config ├── configure.ac ├── continous.sh ├── data ├── swupd-update.service.in ├── swupd-update.timer └── verifytime.service ├── docker ├── Dockerfile └── dockerrun.sh ├── docs ├── Doxyfile ├── README.rst ├── how_to_contribute.md ├── swupd-alias.7.rst.in ├── swupd-update.service.4.rst ├── swupd-update.timer.4.rst ├── swupd.1.rst ├── swupd_signature_verification.md └── update-triggers.target.4.rst ├── how-to-make-a-release ├── scripts ├── build_and_run_tests.bash ├── check-lib-version.sh ├── findstatic.pl ├── flag_validator.bash ├── github_actions │ ├── build_ci.bash │ ├── build_ci_dependencies.bash │ ├── build_ci_style.bash │ ├── filter_bats_list.bash │ ├── run_check.bash │ └── weight_tests.bash └── shellcheck.bash ├── src ├── 3rd_party │ ├── 3rd_party.c │ ├── 3rd_party_add.c │ ├── 3rd_party_bundle_add.c │ ├── 3rd_party_bundle_info.c │ ├── 3rd_party_bundle_list.c │ ├── 3rd_party_bundle_remove.c │ ├── 3rd_party_check_update.c │ ├── 3rd_party_clean.c │ ├── 3rd_party_diagnose.c │ ├── 3rd_party_info.c │ ├── 3rd_party_list.c │ ├── 3rd_party_remove.c │ ├── 3rd_party_repair.c │ ├── 3rd_party_repos.c │ ├── 3rd_party_repos.h │ └── 3rd_party_update.c ├── cmds │ ├── autoupdate.c │ ├── bundle_add.c │ ├── bundle_info.c │ ├── bundle_list.c │ ├── bundle_remove.c │ ├── check_update.c │ ├── clean.c │ ├── info.c │ ├── os_install.c │ ├── repair.c │ ├── swupd_cmds.h │ ├── update.c │ └── verify.c ├── lib │ ├── README.md │ ├── archives.c │ ├── archives.h │ ├── comp_functions.c │ ├── comp_functions.h │ ├── config_file.c │ ├── config_file.h │ ├── formatter_json.c │ ├── formatter_json.h │ ├── hashmap.c │ ├── hashmap.h │ ├── int.c │ ├── int.h │ ├── list.c │ ├── list.h │ ├── log.c │ ├── log.h │ ├── macros.h │ ├── strings.c │ ├── strings.h │ ├── sys.c │ ├── sys.h │ ├── thread_pool.c │ ├── thread_pool.h │ ├── timelist.c │ └── timelist.h ├── main.c ├── swupd.h ├── swupd_build_opts.h ├── swupd_build_variant.h ├── swupd_exit_codes.h ├── swupd_lib │ ├── alias.c │ ├── alias.h │ ├── binary_loader.c │ ├── bundle.c │ ├── bundle.h │ ├── config_loader.c │ ├── config_loader.h │ ├── curl.c │ ├── curl_async.c │ ├── delta.c │ ├── extra_files.c │ ├── filedesc.c │ ├── fullfile.c │ ├── globals.c │ ├── globals.h │ ├── hash.c │ ├── hashdump.c │ ├── helpers.c │ ├── heuristics.c │ ├── heuristics.h │ ├── lock.c │ ├── manifest.c │ ├── manifest.h │ ├── manifest_parser.c │ ├── mirror.c │ ├── packs.c │ ├── progress.c │ ├── progress.h │ ├── scripts.c │ ├── scripts.h │ ├── search_file.c │ ├── signature.c │ ├── signature.h │ ├── statedir.c │ ├── statedir.h │ ├── stats.c │ ├── subscriptions.c │ ├── swupd_comp_functions.c │ ├── swupd_comp_functions.h │ ├── swupd_curl.h │ ├── swupd_curl_internal.h │ ├── swupd_progress.c │ ├── swupd_progress.h │ ├── target_root.c │ ├── target_root.h │ ├── telemetry.c │ ├── telemetry.h │ ├── version.c │ ├── xattrs.c │ └── xattrs.h └── verifytime │ ├── verifytime.c │ ├── verifytime.h │ └── verifytime_main.c ├── swupd.bash ├── swupd.zsh └── test ├── code_analysis ├── check_api_changes.bats ├── compliant.bats ├── shellcheck-all.bats ├── shellcheck.bats └── warning_functions.bats ├── functional ├── 3rd-party │ ├── 3rd-party-allow-http.bats │ ├── 3rd-party-bundle-add-basic.bats │ ├── 3rd-party-bundle-add-config-file.bats │ ├── 3rd-party-bundle-add-dangerous-flags.bats │ ├── 3rd-party-bundle-add-export-bin.bats │ ├── 3rd-party-bundle-add-multi-repo.bats │ ├── 3rd-party-bundle-add-state.bats │ ├── 3rd-party-bundle-add-symlink.bats │ ├── 3rd-party-bundle-info-basic.bats │ ├── 3rd-party-bundle-list-basic.bats │ ├── 3rd-party-bundle-list-deps.bats │ ├── 3rd-party-bundle-list-orphans.bats │ ├── 3rd-party-bundle-remove-basic.bats │ ├── 3rd-party-bundle-remove-exported-bin.bats │ ├── 3rd-party-bundle-remove-multi-repo.bats │ ├── 3rd-party-bundle-remove-orphans.bats │ ├── 3rd-party-check-update-basic.bats │ ├── 3rd-party-clean.bats │ ├── 3rd-party-diagnose-basic.bats │ ├── 3rd-party-info.bats │ ├── 3rd-party-json-output-multirepo.bats │ ├── 3rd-party-json-output.bats │ ├── 3rd-party-repair-basic.bats │ ├── 3rd-party-repair-exported-bin.bats │ ├── 3rd-party-repo-add-force.bats │ ├── 3rd-party-repo-add-negative.bats │ ├── 3rd-party-repo-add.bats │ ├── 3rd-party-repo-list.bats │ ├── 3rd-party-repo-remove-corrupt.bats │ ├── 3rd-party-repo-remove-negative.bats │ ├── 3rd-party-repo-remove.bats │ ├── 3rd-party-update-basic.bats │ ├── 3rd-party-update-dangerous-flags.bats │ ├── 3rd-party-update-export-template-multi-repo.bats │ ├── 3rd-party-update-export-template.bats │ ├── 3rd-party-update-exported-bin.bats │ └── 3rd-party-update-specific-version.bats ├── README.md ├── api │ ├── api-3rd-party-add.bats │ ├── api-3rd-party-bundle-add.bats │ ├── api-3rd-party-bundle-info.bats │ ├── api-3rd-party-bundle-list.bats │ ├── api-3rd-party-bundle-remove.bats │ ├── api-3rd-party-checkupdate.bats │ ├── api-3rd-party-clean.bats │ ├── api-3rd-party-diagnose.bats │ ├── api-3rd-party-info.bats │ ├── api-3rd-party-list.bats │ ├── api-3rd-party-remove.bats │ ├── api-3rd-party-repair.bats │ ├── api-3rd-party-update.bats │ ├── api-autoupdate.bats │ ├── api-bundle-add.bats │ ├── api-bundle-info.bats │ ├── api-bundle-list.bats │ ├── api-bundle-remove.bats │ ├── api-checkupdate.bats │ ├── api-clean.bats │ ├── api-diagnose.bats │ ├── api-hashdump.bats │ ├── api-info.bats │ ├── api-mirror.bats │ ├── api-os-install.bats │ ├── api-repair.bats │ ├── api-search-file.bats │ └── api-update.bats ├── autoupdate │ └── aup-basic.bats ├── bundleadd │ ├── add-alias-basic.bats │ ├── add-also-add-flag.bats │ ├── add-bad-hash-state.bats │ ├── add-bad-hash.bats │ ├── add-bad-manifest.bats │ ├── add-basics.bats │ ├── add-boot-file.bats │ ├── add-boot-skip.bats │ ├── add-directory.bats │ ├── add-experimental.bats │ ├── add-fall-back-to-fullfile.bats │ ├── add-include.bats │ ├── add-install-time.bats │ ├── add-json.bats │ ├── add-multiple.bats │ ├── add-no-signature.bats │ ├── add-overwrite-files.bats │ ├── add-skip-scripts.bats │ ├── add-uses-fullfile.bats │ ├── add-uses-zeropack.bats │ └── add-verify-fix-path.bats ├── bundleinfo │ ├── bundle-info-basic.bats │ ├── bundle-info-files.bats │ ├── bundle-info-includes.bats │ ├── bundle-info-optional.bats │ └── bundle-info-status.bats ├── bundlelist │ ├── list-all.bats │ ├── list-deps-flat.bats │ ├── list-deps-invalid-bundle.bats │ ├── list-deps-nested.bats │ ├── list-experimental.bats │ ├── list-flags.bats │ ├── list-has-dep-nested-not-installed.bats │ ├── list-has-dep-nested-server.bats │ ├── list-has-dep-nested.bats │ ├── list-installed.bats │ ├── list-json.bats │ ├── list-no-deps.bats │ ├── list-none-has-deps.bats │ ├── list-orphans.bats │ └── list-quiet.bats ├── bundleremove │ ├── remove-basics.bats │ ├── remove-boot-file.bats │ ├── remove-flags.bats │ ├── remove-include-nested.bats │ ├── remove-include.bats │ ├── remove-json.bats │ ├── remove-optional-bundles.bats │ ├── remove-orphans.bats │ ├── remove-os-core.bats │ ├── remove-parse-args.bats │ ├── remove-recursive.bats │ └── remove-with-dependency.bats ├── certattributes.cnf ├── check_ids.bash ├── checkupdate │ ├── chk-update-format-bump.bats │ ├── chk-update-json.bats │ ├── chk-update-new-version.bats │ ├── chk-update-no-server-content.bats │ ├── chk-update-no-target-content.bats │ ├── chk-update-slow-server.bats │ └── chk-update-version-match.bats ├── clean │ ├── clean-basic.bats │ ├── clean-grouped-manifests.bats │ └── clean-old-statedir.bats ├── diagnose │ ├── diagnose-also-add.bats │ ├── diagnose-basics.bats │ ├── diagnose-boot-file.bats │ ├── diagnose-bundles.bats │ ├── diagnose-directory-tree-deleted.bats │ ├── diagnose-flags.bats │ ├── diagnose-good.bats │ ├── diagnose-json.bats │ ├── diagnose-missing-file.bats │ ├── diagnose-path.bats │ ├── diagnose-picky-downgrade.bats │ ├── diagnose-picky-whitelist.bats │ └── diagnose-picky.bats ├── hashdump │ └── hashdump-file-hash.bats ├── ignore-list ├── info │ └── info-basic.bats ├── mirror │ ├── mirror-allow-http.bats │ ├── mirror-createdir-negative.bats │ ├── mirror-createdir.bats │ ├── mirror-json.bats │ ├── mirror-set-unset-invalid.bats │ └── mirror-set-unset.bats ├── only_in_ci_slow │ ├── update-non-responsive.bats │ └── update-slow-server.bats ├── only_in_ci_system │ ├── 3rd-party-repo-add-certificate.bats │ ├── add-client-certificate.bats │ ├── add-no-disk-space.bats │ ├── add-no-disk-space.ignore-list │ ├── api-3rd-party-add.bats │ ├── chk-update-client-certificate.bats │ ├── diagnose-client-certificate.bats │ ├── expired-certificate-latest.bats │ ├── expired-certificate-mom.bats │ ├── expired-certificate.bats │ ├── list-client-certificate.bats │ ├── list-no-disk-space.bats │ ├── pemfile │ ├── remove-client-certificate.bats │ ├── remove-no-disk-space.bats │ ├── repair-no-disk-space.bats │ ├── search-client-certificate.bats │ ├── search-no-disk-space.bats │ ├── update-client-certificate.bats │ ├── update-no-disk-space.bats │ └── usa-external-modules.bats ├── os-install │ ├── install-also-add.bats │ ├── install-bad.bats │ ├── install-basics.bats │ ├── install-download.bats │ ├── install-hardlink-symlink.bats │ ├── install-json.bats │ ├── install-latest-missing.bats │ ├── install-multiple.bats │ ├── install-no-also-add.bats │ ├── install-no-fullfile-fallback.bats │ ├── install-no-packs.bats │ ├── install-statedir-cache-offline.bats │ ├── install-statedir-cache.bats │ ├── install-var.bats │ └── install-version.bats ├── repair │ ├── repair-add-missing-include-old.bats │ ├── repair-add-missing-include.bats │ ├── repair-basics.bats │ ├── repair-boot-file-deleted.bats │ ├── repair-boot-file.bats │ ├── repair-boot-file.ignore-list │ ├── repair-boot-skip.bats │ ├── repair-bundles.bats │ ├── repair-deleted-include-manifest.bats │ ├── repair-directory-tree-deleted.bats │ ├── repair-empty-dir-deleted.bats │ ├── repair-error.bats │ ├── repair-flags.bats │ ├── repair-format-mismatch-overdrive.bats │ ├── repair-format-mismatch.bats │ ├── repair-ghosted.bats │ ├── repair-ignore-also-add.bats │ ├── repair-json.bats │ ├── repair-missing-file.bats │ ├── repair-path.bats │ ├── repair-picky-downgrade.bats │ ├── repair-picky-ghosted-missing.bats │ ├── repair-picky-ghosted.bats │ ├── repair-picky.bats │ ├── repair-skip-scripts.bats │ ├── repair-type-changed-system.bats │ ├── repair-unsafe-to-delete.bats │ ├── repair-version-mismatch-overdrive.bats │ └── repair-version-mismatch.bats ├── search │ ├── search-content-check-negative.bats │ ├── search-content-check-positive.bats │ ├── search-experimental.bats │ ├── search-json.bats │ ├── search-sort.bats │ └── search-version.bats ├── server.py ├── signature │ ├── alt-key-rotation.bats │ ├── cert-chain.bats │ ├── corrupted-certificate.bats │ ├── corrupted-signature.bats │ ├── invalid-certificate.bats │ ├── key-rotation.bats │ ├── no-signature.bats │ ├── permission-incorrect.bats │ ├── valid-certificate.bats │ └── version-sig-check.bats ├── testlib.bash ├── update │ ├── update-3rd-party.bats │ ├── update-attr-change.bats │ ├── update-boot-file.bats │ ├── update-boot-file.ignore-list │ ├── update-boot-manager.bats │ ├── update-boot-skip.bats │ ├── update-bundle-removed.bats │ ├── update-deleted-include-manifest.bats │ ├── update-download.bats │ ├── update-fail-to-get-mom.bats │ ├── update-ignore-also-add.bats │ ├── update-include-old-bundle-with-tracked-file.bats │ ├── update-include-old-bundle.bats │ ├── update-include.bats │ ├── update-incremental.bats │ ├── update-json.bats │ ├── update-manifest-delta-recover.bats │ ├── update-manifest-delta.bats │ ├── update-minversion.bats │ ├── update-missing-os-core.bats │ ├── update-newest-added.bats │ ├── update-newest-deleted.bats │ ├── update-newest-ghosted.bats │ ├── update-older-server-version.bats │ ├── update-re-update-bad-os-release.bats │ ├── update-re-update-required.bats │ ├── update-rename-ghosted.bats │ ├── update-rename.bats │ ├── update-search-file-index.bats │ ├── update-show-time.bats │ ├── update-skip-scripts.bats │ ├── update-skip-verified-fullfiles.bats │ ├── update-statedir-bad-hash.bats │ ├── update-status-no-server-content.bats │ ├── update-status-no-target-content.bats │ ├── update-status.bats │ ├── update-to-same-version.bats │ ├── update-type-changes-dir-to-file.bats │ ├── update-type-changes-file-to-recursive-symlink.bats │ ├── update-type-changes-file-to-symlink.bats │ ├── update-type-changes-symlink-to-file.bats │ ├── update-unusual-file-names.bats │ ├── update-use-full-file.bats │ ├── update-use-pack.bats │ ├── update-verify-fix-path-hash-mismatch.bats │ ├── update-verify-fix-path-missing-dir.bats │ ├── update-verify-fullfile-hash.bats │ ├── update-with-mirror-signature.bats │ ├── update-with-mirror.bats │ ├── update-with-old-mirror.bats │ └── update-with-slightly-old-mirror.bats ├── usability │ ├── usa-cachedir-with-symlink.bats │ ├── usa-completion-basic.bats │ ├── usa-config-file.bats │ └── usa-download-retries.bats └── verify-legacy │ ├── verify-bundle.bats │ └── verify-flags.bats ├── installation └── test.bats ├── real_content ├── real_content_lib.bash ├── swupd_repair_fullfiles.bats ├── swupd_update.bats └── swupd_update_jump.bats └── unit ├── data ├── config_noocsp_critical.cnf ├── config_ocsp.cnf ├── config_ocsp_critical.cnf ├── mom1 ├── mom2 ├── mom_invalid1 └── mom_invalid2 ├── test_helper.h ├── test_heuristics.c ├── test_int.c ├── test_list.c ├── test_manifest.c ├── test_signature.c ├── test_strings.c └── test_sys.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.github/workflows/shellcheck-all.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/config -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/configure.ac -------------------------------------------------------------------------------- /continous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/continous.sh -------------------------------------------------------------------------------- /data/swupd-update.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/data/swupd-update.service.in -------------------------------------------------------------------------------- /data/swupd-update.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/data/swupd-update.timer -------------------------------------------------------------------------------- /data/verifytime.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/data/verifytime.service -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/dockerrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docker/dockerrun.sh -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/how_to_contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/how_to_contribute.md -------------------------------------------------------------------------------- /docs/swupd-alias.7.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/swupd-alias.7.rst.in -------------------------------------------------------------------------------- /docs/swupd-update.service.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/swupd-update.service.4.rst -------------------------------------------------------------------------------- /docs/swupd-update.timer.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/swupd-update.timer.4.rst -------------------------------------------------------------------------------- /docs/swupd.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/swupd.1.rst -------------------------------------------------------------------------------- /docs/swupd_signature_verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/swupd_signature_verification.md -------------------------------------------------------------------------------- /docs/update-triggers.target.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/docs/update-triggers.target.4.rst -------------------------------------------------------------------------------- /how-to-make-a-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/how-to-make-a-release -------------------------------------------------------------------------------- /scripts/build_and_run_tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/build_and_run_tests.bash -------------------------------------------------------------------------------- /scripts/check-lib-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/check-lib-version.sh -------------------------------------------------------------------------------- /scripts/findstatic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/findstatic.pl -------------------------------------------------------------------------------- /scripts/flag_validator.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/flag_validator.bash -------------------------------------------------------------------------------- /scripts/github_actions/build_ci.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/build_ci.bash -------------------------------------------------------------------------------- /scripts/github_actions/build_ci_dependencies.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/build_ci_dependencies.bash -------------------------------------------------------------------------------- /scripts/github_actions/build_ci_style.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/build_ci_style.bash -------------------------------------------------------------------------------- /scripts/github_actions/filter_bats_list.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/filter_bats_list.bash -------------------------------------------------------------------------------- /scripts/github_actions/run_check.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/run_check.bash -------------------------------------------------------------------------------- /scripts/github_actions/weight_tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/github_actions/weight_tests.bash -------------------------------------------------------------------------------- /scripts/shellcheck.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/scripts/shellcheck.bash -------------------------------------------------------------------------------- /src/3rd_party/3rd_party.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_add.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_bundle_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_bundle_add.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_bundle_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_bundle_info.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_bundle_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_bundle_list.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_bundle_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_bundle_remove.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_check_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_check_update.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_clean.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_diagnose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_diagnose.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_info.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_list.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_remove.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_repair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_repair.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_repos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_repos.c -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_repos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_repos.h -------------------------------------------------------------------------------- /src/3rd_party/3rd_party_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/3rd_party/3rd_party_update.c -------------------------------------------------------------------------------- /src/cmds/autoupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/autoupdate.c -------------------------------------------------------------------------------- /src/cmds/bundle_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/bundle_add.c -------------------------------------------------------------------------------- /src/cmds/bundle_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/bundle_info.c -------------------------------------------------------------------------------- /src/cmds/bundle_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/bundle_list.c -------------------------------------------------------------------------------- /src/cmds/bundle_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/bundle_remove.c -------------------------------------------------------------------------------- /src/cmds/check_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/check_update.c -------------------------------------------------------------------------------- /src/cmds/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/clean.c -------------------------------------------------------------------------------- /src/cmds/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/info.c -------------------------------------------------------------------------------- /src/cmds/os_install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/os_install.c -------------------------------------------------------------------------------- /src/cmds/repair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/repair.c -------------------------------------------------------------------------------- /src/cmds/swupd_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/swupd_cmds.h -------------------------------------------------------------------------------- /src/cmds/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/update.c -------------------------------------------------------------------------------- /src/cmds/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/cmds/verify.c -------------------------------------------------------------------------------- /src/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/README.md -------------------------------------------------------------------------------- /src/lib/archives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/archives.c -------------------------------------------------------------------------------- /src/lib/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/archives.h -------------------------------------------------------------------------------- /src/lib/comp_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/comp_functions.c -------------------------------------------------------------------------------- /src/lib/comp_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/comp_functions.h -------------------------------------------------------------------------------- /src/lib/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/config_file.c -------------------------------------------------------------------------------- /src/lib/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/config_file.h -------------------------------------------------------------------------------- /src/lib/formatter_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/formatter_json.c -------------------------------------------------------------------------------- /src/lib/formatter_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/formatter_json.h -------------------------------------------------------------------------------- /src/lib/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/hashmap.c -------------------------------------------------------------------------------- /src/lib/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/hashmap.h -------------------------------------------------------------------------------- /src/lib/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/int.c -------------------------------------------------------------------------------- /src/lib/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/int.h -------------------------------------------------------------------------------- /src/lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/list.c -------------------------------------------------------------------------------- /src/lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/list.h -------------------------------------------------------------------------------- /src/lib/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/log.c -------------------------------------------------------------------------------- /src/lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/log.h -------------------------------------------------------------------------------- /src/lib/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/macros.h -------------------------------------------------------------------------------- /src/lib/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/strings.c -------------------------------------------------------------------------------- /src/lib/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/strings.h -------------------------------------------------------------------------------- /src/lib/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/sys.c -------------------------------------------------------------------------------- /src/lib/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/sys.h -------------------------------------------------------------------------------- /src/lib/thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/thread_pool.c -------------------------------------------------------------------------------- /src/lib/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/thread_pool.h -------------------------------------------------------------------------------- /src/lib/timelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/timelist.c -------------------------------------------------------------------------------- /src/lib/timelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/lib/timelist.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/main.c -------------------------------------------------------------------------------- /src/swupd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd.h -------------------------------------------------------------------------------- /src/swupd_build_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_build_opts.h -------------------------------------------------------------------------------- /src/swupd_build_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_build_variant.h -------------------------------------------------------------------------------- /src/swupd_exit_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_exit_codes.h -------------------------------------------------------------------------------- /src/swupd_lib/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/alias.c -------------------------------------------------------------------------------- /src/swupd_lib/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/alias.h -------------------------------------------------------------------------------- /src/swupd_lib/binary_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/binary_loader.c -------------------------------------------------------------------------------- /src/swupd_lib/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/bundle.c -------------------------------------------------------------------------------- /src/swupd_lib/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/bundle.h -------------------------------------------------------------------------------- /src/swupd_lib/config_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/config_loader.c -------------------------------------------------------------------------------- /src/swupd_lib/config_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/config_loader.h -------------------------------------------------------------------------------- /src/swupd_lib/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/curl.c -------------------------------------------------------------------------------- /src/swupd_lib/curl_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/curl_async.c -------------------------------------------------------------------------------- /src/swupd_lib/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/delta.c -------------------------------------------------------------------------------- /src/swupd_lib/extra_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/extra_files.c -------------------------------------------------------------------------------- /src/swupd_lib/filedesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/filedesc.c -------------------------------------------------------------------------------- /src/swupd_lib/fullfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/fullfile.c -------------------------------------------------------------------------------- /src/swupd_lib/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/globals.c -------------------------------------------------------------------------------- /src/swupd_lib/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/globals.h -------------------------------------------------------------------------------- /src/swupd_lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/hash.c -------------------------------------------------------------------------------- /src/swupd_lib/hashdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/hashdump.c -------------------------------------------------------------------------------- /src/swupd_lib/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/helpers.c -------------------------------------------------------------------------------- /src/swupd_lib/heuristics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/heuristics.c -------------------------------------------------------------------------------- /src/swupd_lib/heuristics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/heuristics.h -------------------------------------------------------------------------------- /src/swupd_lib/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/lock.c -------------------------------------------------------------------------------- /src/swupd_lib/manifest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/manifest.c -------------------------------------------------------------------------------- /src/swupd_lib/manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/manifest.h -------------------------------------------------------------------------------- /src/swupd_lib/manifest_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/manifest_parser.c -------------------------------------------------------------------------------- /src/swupd_lib/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/mirror.c -------------------------------------------------------------------------------- /src/swupd_lib/packs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/packs.c -------------------------------------------------------------------------------- /src/swupd_lib/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/progress.c -------------------------------------------------------------------------------- /src/swupd_lib/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/progress.h -------------------------------------------------------------------------------- /src/swupd_lib/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/scripts.c -------------------------------------------------------------------------------- /src/swupd_lib/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/scripts.h -------------------------------------------------------------------------------- /src/swupd_lib/search_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/search_file.c -------------------------------------------------------------------------------- /src/swupd_lib/signature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/signature.c -------------------------------------------------------------------------------- /src/swupd_lib/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/signature.h -------------------------------------------------------------------------------- /src/swupd_lib/statedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/statedir.c -------------------------------------------------------------------------------- /src/swupd_lib/statedir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/statedir.h -------------------------------------------------------------------------------- /src/swupd_lib/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/stats.c -------------------------------------------------------------------------------- /src/swupd_lib/subscriptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/subscriptions.c -------------------------------------------------------------------------------- /src/swupd_lib/swupd_comp_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_comp_functions.c -------------------------------------------------------------------------------- /src/swupd_lib/swupd_comp_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_comp_functions.h -------------------------------------------------------------------------------- /src/swupd_lib/swupd_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_curl.h -------------------------------------------------------------------------------- /src/swupd_lib/swupd_curl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_curl_internal.h -------------------------------------------------------------------------------- /src/swupd_lib/swupd_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_progress.c -------------------------------------------------------------------------------- /src/swupd_lib/swupd_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/swupd_progress.h -------------------------------------------------------------------------------- /src/swupd_lib/target_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/target_root.c -------------------------------------------------------------------------------- /src/swupd_lib/target_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/target_root.h -------------------------------------------------------------------------------- /src/swupd_lib/telemetry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/telemetry.c -------------------------------------------------------------------------------- /src/swupd_lib/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/telemetry.h -------------------------------------------------------------------------------- /src/swupd_lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/version.c -------------------------------------------------------------------------------- /src/swupd_lib/xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/xattrs.c -------------------------------------------------------------------------------- /src/swupd_lib/xattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/swupd_lib/xattrs.h -------------------------------------------------------------------------------- /src/verifytime/verifytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/verifytime/verifytime.c -------------------------------------------------------------------------------- /src/verifytime/verifytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/verifytime/verifytime.h -------------------------------------------------------------------------------- /src/verifytime/verifytime_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/src/verifytime/verifytime_main.c -------------------------------------------------------------------------------- /swupd.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/swupd.bash -------------------------------------------------------------------------------- /swupd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/swupd.zsh -------------------------------------------------------------------------------- /test/code_analysis/check_api_changes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/code_analysis/check_api_changes.bats -------------------------------------------------------------------------------- /test/code_analysis/compliant.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/code_analysis/compliant.bats -------------------------------------------------------------------------------- /test/code_analysis/shellcheck-all.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/code_analysis/shellcheck-all.bats -------------------------------------------------------------------------------- /test/code_analysis/shellcheck.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/code_analysis/shellcheck.bats -------------------------------------------------------------------------------- /test/code_analysis/warning_functions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/code_analysis/warning_functions.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-allow-http.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-allow-http.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-config-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-config-file.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-dangerous-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-dangerous-flags.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-export-bin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-export-bin.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-multi-repo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-multi-repo.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-state.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-state.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-add-symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-add-symlink.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-info-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-info-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-list-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-list-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-list-deps.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-list-deps.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-list-orphans.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-list-orphans.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-remove-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-remove-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-remove-exported-bin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-remove-exported-bin.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-remove-multi-repo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-remove-multi-repo.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-bundle-remove-orphans.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-bundle-remove-orphans.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-check-update-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-check-update-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-clean.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-clean.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-diagnose-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-diagnose-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-info.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-json-output-multirepo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-json-output-multirepo.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-json-output.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-json-output.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repair-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repair-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repair-exported-bin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repair-exported-bin.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-add-force.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-add-force.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-add-negative.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-add-negative.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-add.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-list.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-remove-corrupt.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-remove-corrupt.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-remove-negative.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-remove-negative.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-repo-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-repo-remove.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-basic.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-dangerous-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-dangerous-flags.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-export-template-multi-repo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-export-template-multi-repo.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-export-template.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-export-template.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-exported-bin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-exported-bin.bats -------------------------------------------------------------------------------- /test/functional/3rd-party/3rd-party-update-specific-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/3rd-party/3rd-party-update-specific-version.bats -------------------------------------------------------------------------------- /test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/README.md -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-add.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-bundle-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-bundle-add.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-bundle-info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-bundle-info.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-bundle-list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-bundle-list.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-bundle-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-bundle-remove.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-checkupdate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-checkupdate.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-clean.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-clean.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-diagnose.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-diagnose.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-info.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-list.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-remove.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-repair.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-repair.bats -------------------------------------------------------------------------------- /test/functional/api/api-3rd-party-update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-3rd-party-update.bats -------------------------------------------------------------------------------- /test/functional/api/api-autoupdate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-autoupdate.bats -------------------------------------------------------------------------------- /test/functional/api/api-bundle-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-bundle-add.bats -------------------------------------------------------------------------------- /test/functional/api/api-bundle-info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-bundle-info.bats -------------------------------------------------------------------------------- /test/functional/api/api-bundle-list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-bundle-list.bats -------------------------------------------------------------------------------- /test/functional/api/api-bundle-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-bundle-remove.bats -------------------------------------------------------------------------------- /test/functional/api/api-checkupdate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-checkupdate.bats -------------------------------------------------------------------------------- /test/functional/api/api-clean.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-clean.bats -------------------------------------------------------------------------------- /test/functional/api/api-diagnose.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-diagnose.bats -------------------------------------------------------------------------------- /test/functional/api/api-hashdump.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-hashdump.bats -------------------------------------------------------------------------------- /test/functional/api/api-info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-info.bats -------------------------------------------------------------------------------- /test/functional/api/api-mirror.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-mirror.bats -------------------------------------------------------------------------------- /test/functional/api/api-os-install.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-os-install.bats -------------------------------------------------------------------------------- /test/functional/api/api-repair.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-repair.bats -------------------------------------------------------------------------------- /test/functional/api/api-search-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-search-file.bats -------------------------------------------------------------------------------- /test/functional/api/api-update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/api/api-update.bats -------------------------------------------------------------------------------- /test/functional/autoupdate/aup-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/autoupdate/aup-basic.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-alias-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-alias-basic.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-also-add-flag.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-also-add-flag.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-bad-hash-state.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-bad-hash-state.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-bad-hash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-bad-hash.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-bad-manifest.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-bad-manifest.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-basics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-basics.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-boot-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-boot-file.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-boot-skip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-boot-skip.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-directory.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-directory.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-experimental.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-experimental.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-fall-back-to-fullfile.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-fall-back-to-fullfile.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-include.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-include.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-install-time.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-install-time.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-json.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-multiple.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-multiple.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-no-signature.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-no-signature.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-overwrite-files.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-overwrite-files.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-skip-scripts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-skip-scripts.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-uses-fullfile.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-uses-fullfile.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-uses-zeropack.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-uses-zeropack.bats -------------------------------------------------------------------------------- /test/functional/bundleadd/add-verify-fix-path.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleadd/add-verify-fix-path.bats -------------------------------------------------------------------------------- /test/functional/bundleinfo/bundle-info-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleinfo/bundle-info-basic.bats -------------------------------------------------------------------------------- /test/functional/bundleinfo/bundle-info-files.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleinfo/bundle-info-files.bats -------------------------------------------------------------------------------- /test/functional/bundleinfo/bundle-info-includes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleinfo/bundle-info-includes.bats -------------------------------------------------------------------------------- /test/functional/bundleinfo/bundle-info-optional.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleinfo/bundle-info-optional.bats -------------------------------------------------------------------------------- /test/functional/bundleinfo/bundle-info-status.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleinfo/bundle-info-status.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-all.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-all.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-deps-flat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-deps-flat.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-deps-invalid-bundle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-deps-invalid-bundle.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-deps-nested.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-deps-nested.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-experimental.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-experimental.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-flags.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-has-dep-nested-not-installed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-has-dep-nested-not-installed.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-has-dep-nested-server.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-has-dep-nested-server.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-has-dep-nested.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-has-dep-nested.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-installed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-installed.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-json.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-no-deps.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-no-deps.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-none-has-deps.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-none-has-deps.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-orphans.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-orphans.bats -------------------------------------------------------------------------------- /test/functional/bundlelist/list-quiet.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundlelist/list-quiet.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-basics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-basics.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-boot-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-boot-file.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-flags.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-include-nested.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-include-nested.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-include.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-include.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-json.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-optional-bundles.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-optional-bundles.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-orphans.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-orphans.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-os-core.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-os-core.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-parse-args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-parse-args.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-recursive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-recursive.bats -------------------------------------------------------------------------------- /test/functional/bundleremove/remove-with-dependency.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/bundleremove/remove-with-dependency.bats -------------------------------------------------------------------------------- /test/functional/certattributes.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/certattributes.cnf -------------------------------------------------------------------------------- /test/functional/check_ids.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/check_ids.bash -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-format-bump.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-format-bump.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-json.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-new-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-new-version.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-no-server-content.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-no-server-content.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-no-target-content.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-no-target-content.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-slow-server.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-slow-server.bats -------------------------------------------------------------------------------- /test/functional/checkupdate/chk-update-version-match.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/checkupdate/chk-update-version-match.bats -------------------------------------------------------------------------------- /test/functional/clean/clean-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/clean/clean-basic.bats -------------------------------------------------------------------------------- /test/functional/clean/clean-grouped-manifests.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/clean/clean-grouped-manifests.bats -------------------------------------------------------------------------------- /test/functional/clean/clean-old-statedir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/clean/clean-old-statedir.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-also-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-also-add.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-basics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-basics.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-boot-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-boot-file.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-bundles.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-bundles.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-directory-tree-deleted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-directory-tree-deleted.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-flags.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-good.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-good.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-json.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-missing-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-missing-file.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-path.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-path.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-picky-downgrade.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-picky-downgrade.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-picky-whitelist.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-picky-whitelist.bats -------------------------------------------------------------------------------- /test/functional/diagnose/diagnose-picky.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/diagnose/diagnose-picky.bats -------------------------------------------------------------------------------- /test/functional/hashdump/hashdump-file-hash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/hashdump/hashdump-file-hash.bats -------------------------------------------------------------------------------- /test/functional/ignore-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/ignore-list -------------------------------------------------------------------------------- /test/functional/info/info-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/info/info-basic.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-allow-http.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-allow-http.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-createdir-negative.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-createdir-negative.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-createdir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-createdir.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-json.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-set-unset-invalid.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-set-unset-invalid.bats -------------------------------------------------------------------------------- /test/functional/mirror/mirror-set-unset.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/mirror/mirror-set-unset.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_slow/update-non-responsive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_slow/update-non-responsive.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_slow/update-slow-server.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_slow/update-slow-server.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/3rd-party-repo-add-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/3rd-party-repo-add-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/add-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/add-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/add-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/add-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/add-no-disk-space.ignore-list: -------------------------------------------------------------------------------- 1 | Error: Curl - Cannot close file.* 2 | -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/api-3rd-party-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/api-3rd-party-add.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/chk-update-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/chk-update-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/diagnose-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/diagnose-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/expired-certificate-latest.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/expired-certificate-latest.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/expired-certificate-mom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/expired-certificate-mom.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/expired-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/expired-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/list-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/list-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/list-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/list-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/pemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/pemfile -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/remove-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/remove-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/remove-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/remove-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/repair-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/repair-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/search-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/search-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/search-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/search-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/update-client-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/update-client-certificate.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/update-no-disk-space.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/update-no-disk-space.bats -------------------------------------------------------------------------------- /test/functional/only_in_ci_system/usa-external-modules.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/only_in_ci_system/usa-external-modules.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-also-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-also-add.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-bad.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-bad.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-basics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-basics.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-download.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-download.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-hardlink-symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-hardlink-symlink.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-json.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-latest-missing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-latest-missing.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-multiple.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-multiple.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-no-also-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-no-also-add.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-no-fullfile-fallback.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-no-fullfile-fallback.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-no-packs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-no-packs.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-statedir-cache-offline.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-statedir-cache-offline.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-statedir-cache.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-statedir-cache.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-var.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-var.bats -------------------------------------------------------------------------------- /test/functional/os-install/install-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/os-install/install-version.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-add-missing-include-old.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-add-missing-include-old.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-add-missing-include.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-add-missing-include.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-basics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-basics.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-boot-file-deleted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-boot-file-deleted.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-boot-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-boot-file.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-boot-file.ignore-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-boot-file.ignore-list -------------------------------------------------------------------------------- /test/functional/repair/repair-boot-skip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-boot-skip.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-bundles.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-bundles.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-deleted-include-manifest.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-deleted-include-manifest.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-directory-tree-deleted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-directory-tree-deleted.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-empty-dir-deleted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-empty-dir-deleted.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-error.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-error.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-flags.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-format-mismatch-overdrive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-format-mismatch-overdrive.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-format-mismatch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-format-mismatch.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-ghosted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-ghosted.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-ignore-also-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-ignore-also-add.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-json.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-missing-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-missing-file.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-path.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-path.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-picky-downgrade.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-picky-downgrade.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-picky-ghosted-missing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-picky-ghosted-missing.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-picky-ghosted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-picky-ghosted.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-picky.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-picky.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-skip-scripts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-skip-scripts.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-type-changed-system.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-type-changed-system.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-unsafe-to-delete.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-unsafe-to-delete.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-version-mismatch-overdrive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-version-mismatch-overdrive.bats -------------------------------------------------------------------------------- /test/functional/repair/repair-version-mismatch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/repair/repair-version-mismatch.bats -------------------------------------------------------------------------------- /test/functional/search/search-content-check-negative.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-content-check-negative.bats -------------------------------------------------------------------------------- /test/functional/search/search-content-check-positive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-content-check-positive.bats -------------------------------------------------------------------------------- /test/functional/search/search-experimental.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-experimental.bats -------------------------------------------------------------------------------- /test/functional/search/search-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-json.bats -------------------------------------------------------------------------------- /test/functional/search/search-sort.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-sort.bats -------------------------------------------------------------------------------- /test/functional/search/search-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/search/search-version.bats -------------------------------------------------------------------------------- /test/functional/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/server.py -------------------------------------------------------------------------------- /test/functional/signature/alt-key-rotation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/alt-key-rotation.bats -------------------------------------------------------------------------------- /test/functional/signature/cert-chain.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/cert-chain.bats -------------------------------------------------------------------------------- /test/functional/signature/corrupted-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/corrupted-certificate.bats -------------------------------------------------------------------------------- /test/functional/signature/corrupted-signature.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/corrupted-signature.bats -------------------------------------------------------------------------------- /test/functional/signature/invalid-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/invalid-certificate.bats -------------------------------------------------------------------------------- /test/functional/signature/key-rotation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/key-rotation.bats -------------------------------------------------------------------------------- /test/functional/signature/no-signature.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/no-signature.bats -------------------------------------------------------------------------------- /test/functional/signature/permission-incorrect.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/permission-incorrect.bats -------------------------------------------------------------------------------- /test/functional/signature/valid-certificate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/valid-certificate.bats -------------------------------------------------------------------------------- /test/functional/signature/version-sig-check.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/signature/version-sig-check.bats -------------------------------------------------------------------------------- /test/functional/testlib.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/testlib.bash -------------------------------------------------------------------------------- /test/functional/update/update-3rd-party.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-3rd-party.bats -------------------------------------------------------------------------------- /test/functional/update/update-attr-change.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-attr-change.bats -------------------------------------------------------------------------------- /test/functional/update/update-boot-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-boot-file.bats -------------------------------------------------------------------------------- /test/functional/update/update-boot-file.ignore-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-boot-file.ignore-list -------------------------------------------------------------------------------- /test/functional/update/update-boot-manager.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-boot-manager.bats -------------------------------------------------------------------------------- /test/functional/update/update-boot-skip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-boot-skip.bats -------------------------------------------------------------------------------- /test/functional/update/update-bundle-removed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-bundle-removed.bats -------------------------------------------------------------------------------- /test/functional/update/update-deleted-include-manifest.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-deleted-include-manifest.bats -------------------------------------------------------------------------------- /test/functional/update/update-download.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-download.bats -------------------------------------------------------------------------------- /test/functional/update/update-fail-to-get-mom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-fail-to-get-mom.bats -------------------------------------------------------------------------------- /test/functional/update/update-ignore-also-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-ignore-also-add.bats -------------------------------------------------------------------------------- /test/functional/update/update-include-old-bundle-with-tracked-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-include-old-bundle-with-tracked-file.bats -------------------------------------------------------------------------------- /test/functional/update/update-include-old-bundle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-include-old-bundle.bats -------------------------------------------------------------------------------- /test/functional/update/update-include.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-include.bats -------------------------------------------------------------------------------- /test/functional/update/update-incremental.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-incremental.bats -------------------------------------------------------------------------------- /test/functional/update/update-json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-json.bats -------------------------------------------------------------------------------- /test/functional/update/update-manifest-delta-recover.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-manifest-delta-recover.bats -------------------------------------------------------------------------------- /test/functional/update/update-manifest-delta.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-manifest-delta.bats -------------------------------------------------------------------------------- /test/functional/update/update-minversion.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-minversion.bats -------------------------------------------------------------------------------- /test/functional/update/update-missing-os-core.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-missing-os-core.bats -------------------------------------------------------------------------------- /test/functional/update/update-newest-added.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-newest-added.bats -------------------------------------------------------------------------------- /test/functional/update/update-newest-deleted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-newest-deleted.bats -------------------------------------------------------------------------------- /test/functional/update/update-newest-ghosted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-newest-ghosted.bats -------------------------------------------------------------------------------- /test/functional/update/update-older-server-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-older-server-version.bats -------------------------------------------------------------------------------- /test/functional/update/update-re-update-bad-os-release.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-re-update-bad-os-release.bats -------------------------------------------------------------------------------- /test/functional/update/update-re-update-required.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-re-update-required.bats -------------------------------------------------------------------------------- /test/functional/update/update-rename-ghosted.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-rename-ghosted.bats -------------------------------------------------------------------------------- /test/functional/update/update-rename.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-rename.bats -------------------------------------------------------------------------------- /test/functional/update/update-search-file-index.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-search-file-index.bats -------------------------------------------------------------------------------- /test/functional/update/update-show-time.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-show-time.bats -------------------------------------------------------------------------------- /test/functional/update/update-skip-scripts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-skip-scripts.bats -------------------------------------------------------------------------------- /test/functional/update/update-skip-verified-fullfiles.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-skip-verified-fullfiles.bats -------------------------------------------------------------------------------- /test/functional/update/update-statedir-bad-hash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-statedir-bad-hash.bats -------------------------------------------------------------------------------- /test/functional/update/update-status-no-server-content.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-status-no-server-content.bats -------------------------------------------------------------------------------- /test/functional/update/update-status-no-target-content.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-status-no-target-content.bats -------------------------------------------------------------------------------- /test/functional/update/update-status.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-status.bats -------------------------------------------------------------------------------- /test/functional/update/update-to-same-version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-to-same-version.bats -------------------------------------------------------------------------------- /test/functional/update/update-type-changes-dir-to-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-type-changes-dir-to-file.bats -------------------------------------------------------------------------------- /test/functional/update/update-type-changes-file-to-recursive-symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-type-changes-file-to-recursive-symlink.bats -------------------------------------------------------------------------------- /test/functional/update/update-type-changes-file-to-symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-type-changes-file-to-symlink.bats -------------------------------------------------------------------------------- /test/functional/update/update-type-changes-symlink-to-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-type-changes-symlink-to-file.bats -------------------------------------------------------------------------------- /test/functional/update/update-unusual-file-names.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-unusual-file-names.bats -------------------------------------------------------------------------------- /test/functional/update/update-use-full-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-use-full-file.bats -------------------------------------------------------------------------------- /test/functional/update/update-use-pack.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-use-pack.bats -------------------------------------------------------------------------------- /test/functional/update/update-verify-fix-path-hash-mismatch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-verify-fix-path-hash-mismatch.bats -------------------------------------------------------------------------------- /test/functional/update/update-verify-fix-path-missing-dir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-verify-fix-path-missing-dir.bats -------------------------------------------------------------------------------- /test/functional/update/update-verify-fullfile-hash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-verify-fullfile-hash.bats -------------------------------------------------------------------------------- /test/functional/update/update-with-mirror-signature.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-with-mirror-signature.bats -------------------------------------------------------------------------------- /test/functional/update/update-with-mirror.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-with-mirror.bats -------------------------------------------------------------------------------- /test/functional/update/update-with-old-mirror.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-with-old-mirror.bats -------------------------------------------------------------------------------- /test/functional/update/update-with-slightly-old-mirror.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/update/update-with-slightly-old-mirror.bats -------------------------------------------------------------------------------- /test/functional/usability/usa-cachedir-with-symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/usability/usa-cachedir-with-symlink.bats -------------------------------------------------------------------------------- /test/functional/usability/usa-completion-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/usability/usa-completion-basic.bats -------------------------------------------------------------------------------- /test/functional/usability/usa-config-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/usability/usa-config-file.bats -------------------------------------------------------------------------------- /test/functional/usability/usa-download-retries.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/usability/usa-download-retries.bats -------------------------------------------------------------------------------- /test/functional/verify-legacy/verify-bundle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/verify-legacy/verify-bundle.bats -------------------------------------------------------------------------------- /test/functional/verify-legacy/verify-flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/functional/verify-legacy/verify-flags.bats -------------------------------------------------------------------------------- /test/installation/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/installation/test.bats -------------------------------------------------------------------------------- /test/real_content/real_content_lib.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/real_content/real_content_lib.bash -------------------------------------------------------------------------------- /test/real_content/swupd_repair_fullfiles.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/real_content/swupd_repair_fullfiles.bats -------------------------------------------------------------------------------- /test/real_content/swupd_update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/real_content/swupd_update.bats -------------------------------------------------------------------------------- /test/real_content/swupd_update_jump.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/real_content/swupd_update_jump.bats -------------------------------------------------------------------------------- /test/unit/data/config_noocsp_critical.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/config_noocsp_critical.cnf -------------------------------------------------------------------------------- /test/unit/data/config_ocsp.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/config_ocsp.cnf -------------------------------------------------------------------------------- /test/unit/data/config_ocsp_critical.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/config_ocsp_critical.cnf -------------------------------------------------------------------------------- /test/unit/data/mom1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/mom1 -------------------------------------------------------------------------------- /test/unit/data/mom2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/mom2 -------------------------------------------------------------------------------- /test/unit/data/mom_invalid1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/mom_invalid1 -------------------------------------------------------------------------------- /test/unit/data/mom_invalid2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/data/mom_invalid2 -------------------------------------------------------------------------------- /test/unit/test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_helper.h -------------------------------------------------------------------------------- /test/unit/test_heuristics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_heuristics.c -------------------------------------------------------------------------------- /test/unit/test_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_int.c -------------------------------------------------------------------------------- /test/unit/test_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_list.c -------------------------------------------------------------------------------- /test/unit/test_manifest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_manifest.c -------------------------------------------------------------------------------- /test/unit/test_signature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_signature.c -------------------------------------------------------------------------------- /test/unit/test_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_strings.c -------------------------------------------------------------------------------- /test/unit/test_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/swupd-client/HEAD/test/unit/test_sys.c --------------------------------------------------------------------------------