Skip to content

Commit 7e47b41

Browse files
committedJul 21, 2020
Merge remote-tracking branch 'upstream/develop' into develop
2 parents d7faf3f + cb1add2 commit 7e47b41

File tree

116 files changed

+25
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+25
-74
lines changed
 

‎Makefile

+4-53
Original file line numberDiff line numberDiff line change
@@ -347,66 +347,17 @@ regression-case-studies: $(REGRESSION_TARGETS) $(SEQDFS_TARGETS)
347347
##########################
348348

349349
# FAST <=> processing time less than 10sec on Robert's current computer (per file)
350-
351-
SAPIC_CASE_STUDIES_FAST=basic/no-replication.spthy basic/replication.spthy basic/channels1.spthy basic/channels2.spthy basic/channels3.spthy basic/design-choices.spthy basic/exclusive-secrets.spthy basic/reliable-channel.spthy \
352-
basic/running-example.spthy \
353-
basic/operator-precedence-1.spthy basic/operator-precedence-2.spthy basic/operator-precedence-3.spthy basic/operator-precedence-4.spthy basic/operator-precedence-5.spthy \
354-
feature-let-bindings/let-blocks2.spthy feature-let-bindings/let-blocks3.spthy feature-let-bindings/match_new.spthy \
355-
statVerifLeftRight/stateverif_left_right.spthy \
356-
MoedersheimWebService/set-abstr.spthy MoedersheimWebService/set-abstr-lookup.spthy \
357-
fairexchange-mini/mini10.spthy fairexchange-mini/mini2.spthy fairexchange-mini/mini4.spthy fairexchange-mini/mini6.spthy fairexchange-mini/mini8.spthy fairexchange-mini/ndc-nested-2.spthy fairexchange-mini/ndc-nested-4.spthy fairexchange-mini/ndc-nested.spthy fairexchange-mini/mini1.spthy fairexchange-mini/mini3.spthy fairexchange-mini/mini5.spthy fairexchange-mini/mini7.spthy fairexchange-mini/mini9.spthy fairexchange-mini/ndc-nested-3.spthy fairexchange-mini/ndc-nested-5.spthy fairexchange-mini/ndc-two-replications.spthy\
358-
SCADA/opc_ua_secure_conversation.spthy \
359-
feature-xor/CH07.spthy feature-xor/CRxor.spthy feature-xor/KCL07.spthy \
360-
feature-secret-channel/secret-channel.spthy \
361-
GJM-contract/contract.spthy \
362-
feature-predicates/decwrap-destr-manual.spthy feature-predicates/decwrap-destr-restrict.spthy feature-predicates/decwrap-destr-restrict-variant.spthy feature-predicates/pub.spthy feature-predicates/simple_example.spthy feature-predicates/binding.spthy \
363-
feature-predicates/binding.spthy \
364-
feature-let-bindings/let-blocks.spthy \
365-
feature-locations/AC.spthy \
366-
feature-locations/AKE.spthy \
367-
feature-locations/licensing.spthy \
368-
feature-locations/SOC.spthy \
369-
feature-locations/OTP.spthy \
370-
feature-locations/AC_counter_with_attack.spthy \
371-
feature-locations/AC_sid_with_attack.spthy \
372-
feature-ass-immediate/test-all.spthy
350+
SAPIC_CASE_STUDIES_FAST=$(subst examples/sapic/,,$(wildcard examples/sapic/fast/*/*.spthy))
373351

374352
# SLOW <=> processing time more than 10sec on Robert's current computer, but less than a day
375-
SAPIC_CASE_STUDIES_SLOW= encWrapDecUnwrap/encwrapdecunwrap-nolocks.spthy \
376-
NSL/nsl-no_as-untagged.spthy \
377-
Yubikey/Yubikey.spthy \
378-
encWrapDecUnwrap/encwrapdecunwrap.spthy
353+
SAPIC_CASE_STUDIES_SLOW=$(subst examples/sapic/,,$(wildcard examples/sapic/slow/*/*.spthy))
379354

380355
# SUPER SLOW <=> processing time more than a day or take's more memory than Robert's computer can take
381-
SAPIC_CASE_STUDIES_SUPER_SLOW= fairexchange-km/km.spthy \
382-
fairexchange-asw/aswAB.spthy \
383-
examples/sapic/fairexchange-asw/asw-mod-weak-locks.spthy \
384-
examples/sapic/fairexchange-asw/aswAB-mod.spthy \
385-
fairexchange-gjm/gjm-locks-fakepcsbranch.spthy \
386-
fairexchange-gjm/gjm-locks-unfairness-A.spthy
387-
388-
# The following case studies are in the repository, but cannot be proven automatically.
389-
# PKCS11/pkcs11-templates.spthy
390-
# # heavy use of manual lemmas, not part of regresstion tests
391-
#
392-
# PKCS11/pkcs11-dynamic-policy.spthy \
393-
# # not working
394-
#
395-
# feature-xor/NSLPK3xor.spthy \
396-
# # attack finding relies on sources lemma which is untrue. it is acceptable for
397-
# # this model, because the attacks found despite an incorrect sources lemma are
398-
# # correct by definition, but negating it would defeat its purpose, and removing
399-
# # it would inhibit the attack finding.
400-
#
401-
# envelope/envelope.spthy envelope/envelope_simpler.spthy envelope/envelope_allowsattack.spthy \
402-
# # these examples were never completed and are here for reference only
403-
404-
# not working because of missing support for locations
405-
356+
SAPIC_CASE_STUDIES_SUPER_SLOW=$(subst examples/sapic/,,$(wildcard examples/sapic/super-slow/*/*.spthy))
406357

407358
SAPIC_CS_TARGETS_FAST=$(subst .spthy,_analyzed.spthy,$(addprefix case-studies/sapic/,$(SAPIC_CASE_STUDIES_FAST)))
408359
SAPIC_CS_TARGETS_SLOW=$(subst .spthy,_analyzed.spthy,$(addprefix case-studies/sapic/,$(SAPIC_CASE_STUDIES_SLOW)))
409-
SAPIC_CS_TARGETS_SUPER_SLOW=$(subst .spthy,_analyzed.spthy,$(addprefix case-studies/sapic/,$(SAPIC_CASE_STUDIES_SLOW)))
360+
SAPIC_CS_TARGETS_SUPER_SLOW=$(subst .spthy,_analyzed.spthy,$(addprefix case-studies/sapic/,$(SAPIC_CASE_STUDIES_SUPER_SLOW)))
410361

411362
# lol:
412363
# $(info $$var is [${SAPIC_CS_TARGETS}])

‎examples/sapic/ass_immediate.spthy

-18
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.