Skip to content

Commit 83fb02a

Browse files
author
Justin Boswell
authored
Moved aws-common-runtime -> crt (#180)
1 parent 89207bc commit 83fb02a

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

.builder/actions/aws_crt_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def run(self, env):
5151
# once one test fails all the rest usually fail too.
5252
[self.custom_python, '-m', 'unittest', 'discover', '--verbose', '--failfast'],
5353
# http_client_test.py is python3-only. It launches external processes using the extra args
54-
[self.python3, 'aws-common-runtime/aws-c-http/integration-testing/http_client_test.py',
54+
[self.python3, 'crt/aws-c-http/integration-testing/http_client_test.py',
5555
self.custom_python, 'elasticurl.py'],
5656
]
5757

.gitmodules

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
[submodule "aws-common-runtime/aws-c-common"]
2-
path = aws-common-runtime/aws-c-common
2+
path = crt/aws-c-common
33
url = https://github.com/awslabs/aws-c-common.git
44
[submodule "aws-common-runtime/aws-c-io"]
5-
path = aws-common-runtime/aws-c-io
5+
path = crt/aws-c-io
66
url = https://github.com/awslabs/aws-c-io.git
77
[submodule "aws-common-runtime/aws-c-mqtt"]
8-
path = aws-common-runtime/aws-c-mqtt
8+
path = crt/aws-c-mqtt
99
url = https://github.com/awslabs/aws-c-mqtt.git
1010
[submodule "aws-common-runtime/s2n"]
11-
path = aws-common-runtime/s2n
11+
path = crt/s2n
1212
url = https://github.com/awslabs/s2n.git
1313
[submodule "aws-common-runtime/aws-c-cal"]
14-
path = aws-common-runtime/aws-c-cal
14+
path = crt/aws-c-cal
1515
url = https://github.com/awslabs/aws-c-cal.git
1616
[submodule "aws-common-runtime/aws-c-http"]
17-
path = aws-common-runtime/aws-c-http
17+
path = crt/aws-c-http
1818
url = https://github.com/awslabs/aws-c-http.git
1919
[submodule "aws-common-runtime/aws-c-compression"]
20-
path = aws-common-runtime/aws-c-compression
20+
path = crt/aws-c-compression
2121
url = https://github.com/awslabs/aws-c-compression.git
2222
[submodule "aws-common-runtime/aws-c-auth"]
23-
path = aws-common-runtime/aws-c-auth
23+
path = crt/aws-c-auth
2424
url = https://github.com/awslabs/aws-c-auth.git

MANIFEST.in

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
graft source
2-
graft aws-common-runtime
2+
graft crt
33
global-exclude .git*
44
global-exclude .git*/**
55
global-exclude .travis*
66
global-exclude .travis/**
77
global-exclude codebuild/**
88
global-exclude .cbmc-batch/**
9-
global-exclude aws-common-runtime/*/docs/**
9+
global-exclude crt/*/docs/**
1010
global-exclude docker-images/**
11-
prune aws-common-runtime/**/AWSCRTAndroidTestRunner
12-
prune aws-common-runtime/aws-c-auth/tests/aws-sig-v4-test-suite
13-
prune aws-common-runtime/aws-c-auth/tests/fuzz/corpus
14-
prune aws-common-runtime/s2n/tests/fuzz/corpus
15-
prune aws-common-runtime/s2n/tests/ctverif
16-
prune aws-common-runtime/s2n/tests/pems
17-
prune aws-common-runtime/s2n/tests/saw
18-
prune aws-common-runtime/s2n/tests/sidetrail
19-
prune aws-common-runtime/s2n/tests/integration/trust-store
20-
prune aws-common-runtime/s2n/tests/integration/data
21-
prune aws-common-runtime/s2n/tests/unit/kats
11+
prune crt/**/AWSCRTAndroidTestRunner
12+
prune crt/aws-c-auth/tests/aws-sig-v4-test-suite
13+
prune crt/aws-c-auth/tests/fuzz/corpus
14+
prune crt/s2n/tests/fuzz/corpus
15+
prune crt/s2n/tests/ctverif
16+
prune crt/s2n/tests/pems
17+
prune crt/s2n/tests/saw
18+
prune crt/s2n/tests/sidetrail
19+
prune crt/s2n/tests/integration/trust-store
20+
prune crt/s2n/tests/integration/data
21+
prune crt/s2n/tests/unit/kats

0 commit comments

Comments
 (0)