Skip to content

Commit 6c7c287

Browse files
committed
---
yaml --- r: 82010 b: refs/heads/master c: 7ddcd2a h: refs/heads/master v: v3
1 parent a17ebb0 commit 6c7c287

File tree

11 files changed

+28
-1
lines changed

11 files changed

+28
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 5c016857b7fd14e982cdf446dbe68cbd4524acd2
2+
refs/heads/master: 7ddcd2a745ab70b3d32249e35b753117b1312d15
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
55
refs/heads/try: 70152ff55722878cde684ee6462c14c65f2c4729

trunk/mk/tests.mk

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,15 @@ tidy:
261261
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
262262
$(Q)echo $(ALL_HS) \
263263
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
264+
$(Q)find $(S)src -type f -perm +111 \
265+
-not -name '*.rs' -and -not -name '*.py' \
266+
-and -not -name '*.sh' \
267+
| grep '^$(S)src/llvm' -v \
268+
| grep '^$(S)src/libuv' -v \
269+
| grep '^$(S)src/gyp' -v \
270+
| grep '^$(S)src/etc' -v \
271+
| grep '^$(S)src/rt/jemalloc' -v \
272+
| xargs $(CFG_PYTHON) $(S)src/etc/check-binaries.py
264273

265274
endif
266275

trunk/src/etc/check-binaries.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
# file at the top-level directory of this distribution and at
3+
# http://rust-lang.org/COPYRIGHT.
4+
#
5+
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
# option. This file may not be copied, modified, or distributed
9+
# except according to those terms.
10+
11+
import sys
12+
13+
offenders = sys.argv[1:]
14+
if len(offenders) > 0:
15+
print("Binaries checked into src:")
16+
for offender in offenders:
17+
print(offender)
18+
sys.exit(1)

trunk/src/libsyntax/syntax

-8.04 MB
Binary file not shown.

trunk/src/rt/sundown/html/html.c

100755100644
File mode changed.
-14.7 KB
Binary file not shown.
-14.2 KB
Binary file not shown.

trunk/src/test/run-pass/issue-3559

-9.54 KB
Binary file not shown.

trunk/src/test/run-pass/issue-3702

-14.4 KB
Binary file not shown.

trunk/src/test/run-pass/issue-4016

-9.53 KB
Binary file not shown.

trunk/src/test/run-pass/issue-4092

-93.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)