aboutsummaryrefslogtreecommitdiff
path: root/end-to-end-test.sh
diff options
context:
space:
mode:
authorAlexey Kopytov <akopytov@gmail.com>2018-05-14 16:55:49 +0300
committerJohannes 'fish' Ziemke <github@freigeist.org>2018-05-14 15:55:49 +0200
commitdd98a09bb27b4eca4fd8c67189afbb5e0d8b2920 (patch)
treef22c8669a47de50879005f0fe81b033c56ca2f22 /end-to-end-test.sh
parent84dc362b05aeffecf2e8bc4541840e0744963060 (diff)
downloadprometheus_node_collector-dd98a09bb27b4eca4fd8c67189afbb5e0d8b2920.tar.bz2
prometheus_node_collector-dd98a09bb27b4eca4fd8c67189afbb5e0d8b2920.tar.xz
prometheus_node_collector-dd98a09bb27b4eca4fd8c67189afbb5e0d8b2920.zip
A couple of ARM64-related fixes (#934)
* Do not rely on AArch64 CPUs to support 32-bit ARM for cross-testing. Signed-off-by: Alexey Kopytov <akopytov@gmail.com> * aarch64 like ppc64le reports 64k node_sockstat_TCP_mem_bytes due to 64k pages. Signed-off-by: Alexey Kopytov <akopytov@gmail.com>
Diffstat (limited to 'end-to-end-test.sh')
-rwxr-xr-xend-to-end-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/end-to-end-test.sh b/end-to-end-test.sh
index 152aa98..ec99cae 100755
--- a/end-to-end-test.sh
+++ b/end-to-end-test.sh
@@ -55,7 +55,7 @@ skip_re="^(go_|node_exporter_build_info|node_scrape_collector_duration_seconds|p
55arch="$(uname -m)" 55arch="$(uname -m)"
56 56
57case "${arch}" in 57case "${arch}" in
58 ppc64le) fixture='collector/fixtures/e2e-ppc64le-output.txt' ;; 58 aarch64|ppc64le) fixture='collector/fixtures/e2e-64k-page-output.txt' ;;
59 *) fixture='collector/fixtures/e2e-output.txt' ;; 59 *) fixture='collector/fixtures/e2e-output.txt' ;;
60esac 60esac
61 61